mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Merge pull request #10938 from Pokechu22/android-signing-config
Android: Don't set the signingConfig if keystore property isn't set
This commit is contained in:
commit
6fbc1cbcce
1 changed files with 3 additions and 1 deletions
|
@ -48,7 +48,9 @@ android {
|
||||||
buildTypes {
|
buildTypes {
|
||||||
// Signed by release key, allowing for upload to Play Store.
|
// Signed by release key, allowing for upload to Play Store.
|
||||||
release {
|
release {
|
||||||
signingConfig signingConfigs.release
|
if (project.hasProperty('keystore')) {
|
||||||
|
signingConfig signingConfigs.release
|
||||||
|
}
|
||||||
|
|
||||||
minifyEnabled true
|
minifyEnabled true
|
||||||
shrinkResources true
|
shrinkResources true
|
||||||
|
|
Loading…
Add table
Reference in a new issue