Merge pull request #7223 from thundernest/fix_signing_config
Fix signingConfig hack
This commit is contained in:
commit
83fe6c244d
1 changed files with 1 additions and 5 deletions
|
@ -83,11 +83,7 @@ android {
|
|||
|
||||
buildTypes {
|
||||
release {
|
||||
signingConfigs.findByName("release")?.let { releaseSigningConfig ->
|
||||
// The comment in the line below is necessary to prevent F-Droid's build tools from breaking our Gradle
|
||||
// config when stripping the signing config.
|
||||
signingConfig = releaseSigningConfig // F-Droid hack
|
||||
}
|
||||
signingConfig = signingConfigs.findByName("release")
|
||||
|
||||
isMinifyEnabled = true
|
||||
proguardFiles(
|
||||
|
|
Loading…
Reference in a new issue