kotlin.UninitializedPropertyAccessException: lateinit property database has not been initialized
i have read example to create mvvm kotlin from kotlin-mvvm-sample. and try to make an app to read data from exits sqlite
This is MyApp.kt
class MyApp: Application() {
override fun onCreate() {
super.onCreate()
MyApp.database = Room.databaseBuilder(this, DanhMucThuocDatabase::class.java, "TuDienThuoc.db")
.openHelperFactory(AssetSQLiteOpenHelperFactory())...