0
When I send run the app, I get a crash like this on the first call to the database:
java.lang.RuntimeException: Unable to start activity ComponentInfo{.../....ActivityLogin}: java.lang.RuntimeException: cannot find implementation for ....database.AppDatabase. AppDatabase_Impl does not exist
My database-related dependencies:
compile "android.arch.persistence.room:runtime:1.0.0"
annotationProcessor "android.arch.persistence.room:compiler:1.0.0"
P.S.: I am not using Kapt in my application.
"I am not using Kapt in my application." - but you should be if you want to use the Room in Kotlin.
– ramaral