Skip to content

Commit 71c6f31

Browse files
authored
fix(app): Define dependenciesInfo in correct location
1 parent 6e2a6bc commit 71c6f31

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

companion_app/android/app/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@ android {
6565
signingConfig signingConfigs.release
6666
}
6767
}
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+
}
6875
}
6976

7077
dependencies {

companion_app/android/build.gradle

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,3 @@ subprojects {
4242
tasks.register("clean", Delete) {
4343
delete rootProject.buildDir
4444
}
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

Comments
 (0)