We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 29d228d + bb14f8b commit 0517d6cCopy full SHA for 0517d6c
app/build.gradle.kts
@@ -65,6 +65,12 @@ android {
65
buildFeatures {
66
compose = true
67
}
68
+ dependenciesInfo {
69
+ // Disables dependency metadata when building APKs.
70
+ includeInApk = false
71
+ // Disables dependency metadata when building Android App Bundles.
72
+ includeInBundle = false
73
+ }
74
75
76
dependencies {
@@ -95,4 +101,4 @@ dependencies {
95
101
androidTestImplementation(libs.androidx.compose.ui.test.junit4)
96
102
debugImplementation(libs.androidx.compose.ui.tooling)
97
103
debugImplementation(libs.androidx.compose.ui.test.manifest)
98
-}
104
+}
0 commit comments