|
@@ -1,9 +1,10 @@
|
|
|
[versions]
|
|
[versions]
|
|
|
agp = "8.13.0"
|
|
agp = "8.13.0"
|
|
|
|
|
+androidDatabaseSqlcipher = "4.11.0"
|
|
|
coreSplashscreen = "1.0.1"
|
|
coreSplashscreen = "1.0.1"
|
|
|
datastorePreferences = "1.1.7"
|
|
datastorePreferences = "1.1.7"
|
|
|
hiltAndroid = "2.57.2"
|
|
hiltAndroid = "2.57.2"
|
|
|
-kotlin = "2.0.21"
|
|
|
|
|
|
|
+kotlin = "2.2.10"
|
|
|
coreKtx = "1.17.0"
|
|
coreKtx = "1.17.0"
|
|
|
junit = "4.13.2"
|
|
junit = "4.13.2"
|
|
|
junitVersion = "1.3.0"
|
|
junitVersion = "1.3.0"
|
|
@@ -15,11 +16,20 @@ lifecycleLivedataKtx = "2.9.4"
|
|
|
lifecycleViewmodelKtx = "2.9.4"
|
|
lifecycleViewmodelKtx = "2.9.4"
|
|
|
navigationFragmentKtx = "2.9.5"
|
|
navigationFragmentKtx = "2.9.5"
|
|
|
navigationUiKtx = "2.9.5"
|
|
navigationUiKtx = "2.9.5"
|
|
|
|
|
+roomVersion = "2.8.2"
|
|
|
|
|
+sqliteFramework = "2.6.1"
|
|
|
|
|
+ksp = "2.2.10-2.0.2"
|
|
|
|
|
|
|
|
[libraries]
|
|
[libraries]
|
|
|
|
|
+android-database-sqlcipher = { module = "net.zetetic:sqlcipher-android", version.ref = "androidDatabaseSqlcipher" }
|
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
|
androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "coreSplashscreen" }
|
|
androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "coreSplashscreen" }
|
|
|
androidx-datastore-preferences = { module = "androidx.datastore:datastore-preferences", version.ref = "datastorePreferences" }
|
|
androidx-datastore-preferences = { module = "androidx.datastore:datastore-preferences", version.ref = "datastorePreferences" }
|
|
|
|
|
+androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "roomVersion" }
|
|
|
|
|
+androidx-room-ktx = { module = "androidx.room:room-ktx", version.ref = "roomVersion" }
|
|
|
|
|
+androidx-room-runtime = { module = "androidx.room:room-runtime", version.ref = "roomVersion" }
|
|
|
|
|
+androidx-sqlite = { module = "androidx.sqlite:sqlite", version.ref = "sqliteFramework" }
|
|
|
|
|
+androidx-sqlite-framework = { module = "androidx.sqlite:sqlite-framework", version.ref = "sqliteFramework" }
|
|
|
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hiltAndroid" }
|
|
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hiltAndroid" }
|
|
|
hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hiltAndroid" }
|
|
hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hiltAndroid" }
|
|
|
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
|
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
|
@@ -37,4 +47,6 @@ androidx-navigation-ui-ktx = { group = "androidx.navigation", name = "navigation
|
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
|
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
|
hilt-android = { id = "com.google.dagger.hilt.android", version.ref = "hiltAndroid" }
|
|
hilt-android = { id = "com.google.dagger.hilt.android", version.ref = "hiltAndroid" }
|
|
|
|
|
+devtools-ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
|
|
|
|
|
+android-library = { id = "com.android.library", version.ref = "agp" }
|
|
|
|
|
|