diff options
author | Przemyslaw <prymula76@outlook.com> | 2024-04-18 18:46:24 +0200 |
---|---|---|
committer | Przemyslaw <prymula76@outlook.com> | 2024-04-18 18:46:24 +0200 |
commit | 11818054364b6248be8ff092d2914598f1081dc5 (patch) | |
tree | 361ab82dcba66f79a7cd4f911dc0873a0bf0632a /android/SameGame/gradle/libs.versions.toml |
Init
Diffstat (limited to 'android/SameGame/gradle/libs.versions.toml')
-rw-r--r-- | android/SameGame/gradle/libs.versions.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/android/SameGame/gradle/libs.versions.toml b/android/SameGame/gradle/libs.versions.toml new file mode 100644 index 0000000..32534eb --- /dev/null +++ b/android/SameGame/gradle/libs.versions.toml @@ -0,0 +1,31 @@ +[versions] +agp = "8.3.1" +kotlin = "1.9.0" +coreKtx = "1.10.1" +junit = "4.13.2" +junitVersion = "1.1.5" +espressoCore = "3.5.1" +lifecycleRuntimeKtx = "2.6.1" +activityCompose = "1.7.0" +composeBom = "2023.08.00" + +[libraries] +androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" } +junit = { group = "junit", name = "junit", version.ref = "junit" } +androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" } +androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" } +androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" } +androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" } +androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" } +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] +androidApplication = { id = "com.android.application", version.ref = "agp" } +jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } + |