Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ abstract class DataBase : RoomDatabase() {
abstract fun getDishesDao(): DishesDao
abstract fun getSessionDao(): SessionDao
abstract fun getSettingsDao(): SettingsDao
abstract fun getBasketDao(): BasketDAO

companion object {
@Volatile
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.8.2" apply false
id("com.android.library") version "8.8.2" apply false
id("com.android.application") version "8.10.0" apply false
id("com.android.library") version "8.10.0" apply false
id("org.jetbrains.kotlin.android") version "2.1.20" apply false
}