updating commons, increasing min SDK to 23

This commit is contained in:
tibbi
2022-12-24 23:04:51 +01:00
parent 8cf0c2b7b8
commit 7b76b7290c
3 changed files with 7 additions and 15 deletions

View File

@ -28,7 +28,7 @@ abstract class NotesDatabase : RoomDatabase() {
private var defaultWidgetBgColor = 0
fun getInstance(context: Context): NotesDatabase {
defaultWidgetBgColor = context.resources.getInteger(R.integer.default_widget_bg_color)
defaultWidgetBgColor = context.resources.getColor(R.color.default_widget_bg_color)
if (db == null) {
synchronized(NotesDatabase::class) {
if (db == null) {