libs.versions.toml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [versions]
  2. agp = "8.13.0"
  3. androidDatabaseSqlcipher = "4.11.0"
  4. coreSplashscreen = "1.0.1"
  5. datastorePreferences = "1.1.7"
  6. hiltAndroid = "2.57.2"
  7. kotlin = "2.2.20"
  8. coreKtx = "1.17.0"
  9. junit = "4.13.2"
  10. junitVersion = "1.3.0"
  11. espressoCore = "3.7.0"
  12. appcompat = "1.7.1"
  13. material = "1.13.0"
  14. constraintlayout = "2.2.1"
  15. lifecycleLivedataKtx = "2.9.4"
  16. lifecycleViewmodelKtx = "2.9.4"
  17. navigationFragmentKtx = "2.9.5"
  18. navigationUiKtx = "2.9.5"
  19. roomVersion = "2.8.2"
  20. sqliteFramework = "2.6.1"
  21. [libraries]
  22. android-database-sqlcipher = { module = "net.zetetic:sqlcipher-android", version.ref = "androidDatabaseSqlcipher" }
  23. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
  24. androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "coreSplashscreen" }
  25. androidx-datastore-preferences = { module = "androidx.datastore:datastore-preferences", version.ref = "datastorePreferences" }
  26. androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "roomVersion" }
  27. androidx-room-ktx = { module = "androidx.room:room-ktx", version.ref = "roomVersion" }
  28. androidx-room-runtime = { module = "androidx.room:room-runtime", version.ref = "roomVersion" }
  29. androidx-sqlite = { module = "androidx.sqlite:sqlite", version.ref = "sqliteFramework" }
  30. androidx-sqlite-framework = { module = "androidx.sqlite:sqlite-framework", version.ref = "sqliteFramework" }
  31. hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hiltAndroid" }
  32. hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hiltAndroid" }
  33. junit = { group = "junit", name = "junit", version.ref = "junit" }
  34. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
  35. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
  36. androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  37. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  38. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  39. androidx-lifecycle-livedata-ktx = { group = "androidx.lifecycle", name = "lifecycle-livedata-ktx", version.ref = "lifecycleLivedataKtx" }
  40. androidx-lifecycle-viewmodel-ktx = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-ktx", version.ref = "lifecycleViewmodelKtx" }
  41. androidx-navigation-fragment-ktx = { group = "androidx.navigation", name = "navigation-fragment-ktx", version.ref = "navigationFragmentKtx" }
  42. androidx-navigation-ui-ktx = { group = "androidx.navigation", name = "navigation-ui-ktx", version.ref = "navigationUiKtx" }
  43. [plugins]
  44. android-application = { id = "com.android.application", version.ref = "agp" }
  45. kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
  46. hilt-android = { id = "com.google.dagger.hilt.android", version.ref = "hiltAndroid" }