Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions workout-logger/android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ android {
jvmTarget = JavaVersion.VERSION_11.toString()
}

// Strip AGP's "Dependency metadata" signing block from the APK. It embeds a
// Protobuf list of dependencies in an extra APK signing block, which F-Droid's
// `scanner` rejects ("Found extra signing block 'Dependency metadata'"). It is
// only consumed by Google Play, so disabling it is safe.
dependenciesInfo {
includeInApk = false
includeInBundle = false
}

signingConfigs {
create("release") {
val keystorePath = System.getenv("KEYSTORE_PATH")
Expand Down
Loading