Skip to content

Commit 4696308

Browse files
Add dependenciesInfo opt-out in Gradle
1 parent ffde6ea commit 4696308

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

android/app/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ android {
5757
signingConfig signingConfigs.debug
5858
}
5959
}
60+
61+
dependenciesInfo {
62+
// Disables dependency metadata when building APKs.
63+
includeInApk = false
64+
// Disables dependency metadata when building Android App Bundles.
65+
includeInBundle = false
66+
}
6067
}
6168

6269
flutter {

0 commit comments

Comments
 (0)