Make dependencies non-transitive

This commit is contained in:
Denis Andrasec 2024-07-18 14:42:29 +02:00
parent 6f0e199818
commit 7fa52fc849
3 changed files with 3 additions and 9 deletions

View File

@ -71,8 +71,4 @@ dependencies {
debugImplementation(libs.androidx.ui.test.manifest) debugImplementation(libs.androidx.ui.test.manifest)
implementation(project(":spine-android")) implementation(project(":spine-android"))
// TODO Check if we really need to import `spine-libgdx` in addition to `spine-android`?
implementation("com.badlogicgames.gdx:gdx:1.12.2-SNAPSHOT")
implementation("com.esotericsoftware.spine:spine-libgdx:4.2.0")
} }

View File

@ -9,7 +9,6 @@ lifecycleRuntimeKtx = "2.6.1"
activityCompose = "1.7.0" activityCompose = "1.7.0"
composeBom = "2023.08.00" composeBom = "2023.08.00"
appcompat = "1.6.1" appcompat = "1.6.1"
material = "1.10.0"
navigationCompose = "2.7.7" navigationCompose = "2.7.7"
appcompatVersion = "1.7.0" appcompatVersion = "1.7.0"
@ -29,7 +28,6 @@ androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-man
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" } androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
androidx-material3 = { group = "androidx.compose.material3", name = "material3" } androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" } androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
androidx-navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigationCompose" } androidx-navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigationCompose" }
appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompatVersion" } appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompatVersion" }

View File

@ -31,9 +31,9 @@ android {
dependencies { dependencies {
implementation(libs.androidx.appcompat) implementation(libs.androidx.appcompat)
implementation(libs.material) api("com.badlogicgames.gdx:gdx:1.12.2-SNAPSHOT")
implementation("com.badlogicgames.gdx:gdx:1.12.2-SNAPSHOT") api("com.esotericsoftware.spine:spine-libgdx:4.2.0")
implementation("com.esotericsoftware.spine:spine-libgdx:4.2.0")
testImplementation(libs.junit) testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit) androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core) androidTestImplementation(libs.androidx.espresso.core)