mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
Merge pull request #196 from Sonicadvance1/gradle-buildoptions
Pass our signing information to gradle by argument.
This commit is contained in:
commit
b57949131d
@ -61,12 +61,11 @@ android {
|
|||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
if (System.getenv("KEYSTORE") != null)
|
if (project.hasProperty('keystore')) {
|
||||||
{
|
storeFile file(project.property('keystore'))
|
||||||
storeFile file(System.getenv("KEYSTORE"))
|
storePassword project.property('storepass')
|
||||||
storePassword System.getenv("KEYSTORE_PASSWORD")
|
keyAlias project.property('keyalias')
|
||||||
keyAlias System.getenv("KEY_ALIAS")
|
keyPassword project.property('keypass')
|
||||||
keyPassword System.getenv("KEY_PASSWORD")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user