We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e2a6bc commit 71c6f31Copy full SHA for 71c6f31
companion_app/android/app/build.gradle
@@ -65,6 +65,13 @@ android {
65
signingConfig signingConfigs.release
66
}
67
68
+
69
+ dependenciesInfo {
70
+ // Disables dependency metadata when building APKs.
71
+ includeInApk = false
72
+ // Disables dependency metadata when building Android App Bundles.
73
+ includeInBundle = false
74
+ }
75
76
77
dependencies {
companion_app/android/build.gradle
@@ -42,10 +42,3 @@ subprojects {
42
tasks.register("clean", Delete) {
43
delete rootProject.buildDir
44
45
-
46
-dependenciesInfo {
47
- // Disables dependency metadata when building APKs.
48
- includeInApk = false
49
- // Disables dependency metadata when building Android App Bundles.
50
- includeInBundle = false
51
-}
0 commit comments