Skip to content

Commit e5e1acf

Browse files
authored
Disable DependencyInfoBlock (#49)
1 parent e7823c9 commit e5e1acf

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

android/app/build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ android {
7171
signingConfig = signingConfigs.release
7272
}
7373
}
74+
75+
dependenciesInfo {
76+
// Disables dependency metadata when building APKs.
77+
includeInApk = false
78+
// Disables dependency metadata when building Android App Bundles.
79+
includeInBundle = false
80+
}
7481
}
7582

7683
flutter {

pubspec.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 0.1.0+8
19+
version: 0.1.0+9
2020

2121
environment:
2222
sdk: '>=3.2.3 <4.0.0'
23+
flutter: '3.24.4'
2324

2425
# Dependencies specify other packages that your package needs in order to work.
2526
# To automatically upgrade your package dependencies to the latest versions

0 commit comments

Comments
 (0)