mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2025-01-13 20:01:34 +01:00
Fix gradle sync if there is no signing config defined
This commit is contained in:
parent
a1609096c5
commit
76f728fa64
1 changed files with 6 additions and 1 deletions
|
@ -29,6 +29,12 @@ if(project.hasProperty("signing.properties") && new File(project.property("signi
|
||||||
keyPassword props['sp.keyPassword']
|
keyPassword props['sp.keyPassword']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
signingConfig signingConfigs.release
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,7 +64,6 @@ android {
|
||||||
|
|
||||||
minifyEnabled true
|
minifyEnabled true
|
||||||
proguardFiles 'proguard.cfg'
|
proguardFiles 'proguard.cfg'
|
||||||
signingConfig signingConfigs.release
|
|
||||||
|
|
||||||
applicationVariants.all { variant ->
|
applicationVariants.all { variant ->
|
||||||
appendVersionNameVersionCode(variant, defaultConfig)
|
appendVersionNameVersionCode(variant, defaultConfig)
|
||||||
|
|
Loading…
Reference in a new issue