Skip to content

Commit b4dbdc1

Browse files
feat: Disable dependency metadata in builds
This commit disables the inclusion of dependency metadata in both APK and Android App Bundle builds. This is achieved by setting `includeInApk = false` and `includeInBundle = false` within the `dependenciesInfo` block in the `app/build.gradle.kts` file. This change is intended for specific distribution channels like IzzyOnDroid/F-Droid and Google Play.
1 parent 4a8e350 commit b4dbdc1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

app/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,13 @@ android {
149149
keepDebugSymbols.add("libandroidx.graphics.path.so")
150150
}
151151
}
152+
153+
dependenciesInfo {
154+
// Disables dependency metadata when building APKs (for IzzyOnDroid/F-Droid)
155+
includeInApk = false
156+
// Disables dependency metadata when building Android App Bundles (for Google Play)
157+
includeInBundle = false
158+
}
152159
}
153160

154161
// =========================

0 commit comments

Comments
 (0)