mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-31 19:57:06 +01:00
include debug keystore directly
replace symlink silliness ant required with gradle commands to sign debug builds with the checked-in (local file) debug keystore. Make it possible for an environment variable to override in case somebody wants to use his own.
This commit is contained in:
parent
15d0f88187
commit
83fed4da91
2 changed files with 10 additions and 0 deletions
|
@ -95,6 +95,16 @@ android {
|
||||||
storePassword "notReal"
|
storePassword "notReal"
|
||||||
keyPassword "notReal"
|
keyPassword "notReal"
|
||||||
}
|
}
|
||||||
|
debug {
|
||||||
|
def path = System.getenv("DEBUG_KEYSTORE_PATH")
|
||||||
|
if (! path) {
|
||||||
|
path = "./debug.keystore"
|
||||||
|
}
|
||||||
|
storeFile file(path)
|
||||||
|
keyAlias "androiddebugkey"
|
||||||
|
storePassword "android"
|
||||||
|
keyPassword "android"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|
Loading…
Add table
Reference in a new issue