DroidKaigi / conference-app-2020

The Official Conference App for DroidKaigi 2020 Tokyo
https://droidkaigi.jp/2020/en/
Apache License 2.0
774 stars 328 forks source link

must annotate primary keys with @NonNull #830

Open CMingTseng opened 3 years ago

CMingTseng commented 3 years ago

You must annotate primary keys with @NonNull. "repoName" is nullable. SQLite considers this a bug and Room does not allow it. See SQLite docs for details: https://www.sqlite.org/lang_createtable.html - repoName in com.android.example.model.Contributorerror: You must annotate primary keys with @NonNull. "repoOwner" is nullable. SQLite considers this a bug and Room does not allow it. See SQLite docs for details: https://www.sqlite.org/lang_createtable.html - repoOwner in com.android.example.model.Contributor[WARN] Incremental annotation processing requested, but support is disabled because the following processors are not incremental: androidx.room.RoomProcessor (DYNAMIC).

takahirom commented 3 years ago

Thank you! Tag this issue as welcome contribute.