I am trying to setup signing process so that keystore password and key password are not stored in the project\'s build.gradle file.
build.gradle
Cur
This is how I do it. Use Environment Variables
signingConfigs { release { storeFile file(System.getenv("KEYSTORE")) storePassword System.getenv("KEYSTORE_PASSWORD") keyAlias System.getenv("KEY_ALIAS") keyPassword System.getenv("KEY_PASSWORD") }