Skip to content

Commit 4cc0906

Browse files
V1.0.6: Remove dependency metadata bundling in binary
1 parent ec53a14 commit 4cc0906

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

android/app/build.gradle.kts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ android {
2525
// For more information, see: https://flutter.dev/to/review-gradle-config.
2626
minSdk = 23 // torch_light requires >= 23
2727
targetSdk = flutter.targetSdkVersion
28-
versionCode = 6
29-
versionName = "1.0.5"
28+
versionCode = 7
29+
versionName = "1.0.6"
3030
}
3131

3232
buildTypes {
@@ -36,6 +36,14 @@ android {
3636
signingConfig = signingConfigs.getByName("debug")
3737
}
3838
}
39+
40+
dependenciesInfo {
41+
// Disables dependency metadata when building APKs.
42+
includeInApk = false
43+
// Disables dependency metadata when building Android App Bundles.
44+
includeInBundle = false
45+
}
46+
3947
}
4048

4149
flutter {

android/app/release/output-metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"type": "SINGLE",
1212
"filters": [],
1313
"attributes": [],
14-
"versionCode": 6,
15-
"versionName": "1.0.5",
14+
"versionCode": 7,
15+
"versionName": "1.0.6",
1616
"outputFile": "app-release.apk"
1717
}
1818
],

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ 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: 1.0.5+6
19+
version: 1.0.6+7
2020

2121
environment:
2222
sdk: '>=3.1.0 <4.0.0'

0 commit comments

Comments
 (0)