-
Notifications
You must be signed in to change notification settings - Fork 73
Closed
Labels
Milestone
Description
http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Signing-Configurations references http://stackoverflow.com/questions/18328730/how-to-create-a-release-signed-apk-file-using-gradle
android{
signingConfigs {
release {
storeFile file(System.getenv("KEYSTORE"))
storePassword System.getenv("KEYSTORE_PASSWORD")
keyAlias System.getenv("KEY_ALIAS")
keyPassword System.getenv("KEY_PASSWORD")
}
}
}
Reactions are currently unavailable