Update build.gradle

This commit is contained in:
Guilherme Gazzo 2017-11-01 01:12:20 -02:00 committed by GitHub
parent f2a0f51b45
commit 064898fbd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -143,6 +143,15 @@ android {
}
}
signingConfigs {
release {
storeFile file(System.getenv("KEYSTORE"))
storePassword System.getenv("KEYSTORE_PASSWORD")
keyAlias System.getenv("KEY_ALIAS")
keyPassword System.getenv("KEY_PASSWORD")
}
}
dependencies {
compile project(':react-native-svg')
compile project(':react-native-image-picker')