libs.versions.toml 865 B

1234567891011121314151617181920
  1. [versions]
  2. agp = "8.7.0"
  3. kotlin = "1.9.24"
  4. coreKtx = "1.15.0"
  5. appcompat = "1.7.0"
  6. material = "1.12.0"
  7. activity = "1.9.3"
  8. constraintlayout = "2.2.0"
  9. [libraries]
  10. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
  11. androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  12. google-material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  13. androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
  14. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  15. [plugins]
  16. android-application = { id = "com.android.application", version.ref = "agp" }
  17. jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }