Skip to content

Commit be19811

Browse files
committed
exlude depencency info block for standalone builds and bump version (#55)
1 parent dc91ca8 commit be19811

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

app/build.gradle

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
minSdkVersion 17
77
targetSdkVersion 36
88
compileSdk 34
9-
versionCode 35
10-
versionName "1.13.0"
9+
versionCode 36
10+
versionName "1.13.1"
1111
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
1212
vectorDrawables.useSupportLibrary = true
1313
}
@@ -26,6 +26,12 @@ android {
2626
productFlavors {
2727
standalone {
2828
dimension "appstore"
29+
dependenciesInfo {
30+
// Disables dependency metadata when building APKs.
31+
includeInApk = false
32+
// Disables dependency metadata when building Android App Bundles.
33+
includeInBundle = false
34+
}
2935
}
3036
google {
3137
dimension "appstore"

0 commit comments

Comments
 (0)