Skip to content

Commit b71f125

Browse files
committed
build.gradle.kts: Update versionCode to 9 and add dependenciesInfo to disable metadata in APKs and App Bundles
1 parent e8dbec0 commit b71f125

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

app/build.gradle.kts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ android {
1111
applicationId = "com.addev.listaspam"
1212
minSdk = 29
1313
targetSdk = 34
14-
versionCode = 1
14+
versionCode = 9
1515
versionName = "2.1.0"
1616

1717
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
@@ -34,6 +34,12 @@ android {
3434
kotlinOptions {
3535
jvmTarget = "1.8"
3636
}
37+
dependenciesInfo {
38+
// Disables dependency metadata when building APKs (for IzzyOnDroid/F-Droid)
39+
includeInApk = false
40+
// Disables dependency metadata when building Android App Bundles (for Google Play)
41+
includeInBundle = false
42+
}
3743
}
3844

3945
dependencies {

0 commit comments

Comments
 (0)