Room Database – Kotlin – Nullable column
You might come across this error when you are using Room database on Android. This happens because the generated schema for your tables mark some of the table’s columns as NOT NULL.
You might come across this error when you are using Room database on Android. This happens because the generated schema for your tables mark some of the table’s columns as NOT NULL.
I tried creating a new project on Android Studio 3.2.1. In the project creation wizard, choosing the minimum SDK version support as API level 21 (Android 5.0), created a project… Read more »