Skip to content

Commit

Permalink
Disable encrypted DependencyInfoBlock in APK build
Browse files Browse the repository at this point in the history
  • Loading branch information
AntumDeluge committed Dec 21, 2024
1 parent 83133d0 commit 17516e8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/android/client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ android {
minSdkVersion 21
}

// F-Droid doesn't allow encrypted DependencyInfoBlock in APK
dependenciesInfo {
// disables dependency metadata when building APKs
includeInApk = false
// disables dependency metadata when building Android App Bundles
includeInBundle = false
}

// build output
project.setProperty("archivesBaseName", "${namespace}-${defaultConfig.versionCode}")
project.setProperty("buildDir", "${projectDir}/../../../build/build_android_client")
Expand Down

0 comments on commit 17516e8

Please sign in to comment.