Update build.gradle

This commit is contained in:
Guilherme Gazzo 2017-11-01 00:17:46 -02:00 committed by GitHub
parent 6e479d79e7
commit 211bc33606
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -12,6 +12,15 @@ buildscript {
}
}
signingConfigs {
release {
storeFile file(System.getenv("KEYSTORE"))
storePassword System.getenv("KEYSTORE_PASSWORD")
keyAlias System.getenv("KEY_ALIAS")
keyPassword System.getenv("KEY_PASSWORD")
}
}
allprojects {
repositories {
mavenLocal()