1234567891011121314151617181920212223242526272829303132333435363738394041 |
- [versions]
- # plugin
- agp = "8.4.0"
- kotlin-android = "1.8.0"
- hilt = "2.44"
- core-ktx = "1.10.1"
- junit = "4.13.2"
- junit-version = "1.1.5"
- espresso-core = "3.5.1"
- lifecycle-runtime-ktx = "2.6.1"
- activity-compose = "1.8.0"
- compose-bom = "2023.08.00"
- #lib
- [libraries]
- androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
- junit = { group = "junit", name = "junit", version.ref = "junit" }
- androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junit-version" }
- androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso-core" }
- androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle-runtime-ktx" }
- androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activity-compose" }
- androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose-bom" }
- androidx-ui = { group = "androidx.compose.ui", name = "ui" }
- androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
- androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
- androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
- androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
- androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
- androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
- [plugins]
- application = { id = "com.android.application", version.ref = "agp" }
- library = { id = "com.android.library", version.ref = "agp" }
- kotlin = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin-android" }
- hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
- [bundles]
|