Use release config for debug

This commit is contained in:
Brandon Presley 2022-07-15 20:06:41 +12:00
parent bdd712833c
commit e9948a291a

View File

@ -119,10 +119,12 @@ android {
} }
} }
debug { debug {
storeFile file('debug.keystore') if (project.hasProperty('MYAPP_UPLOAD_STORE_FILE')) {
storePassword 'android' storeFile file(MYAPP_UPLOAD_STORE_FILE)
keyAlias 'androiddebugkey' storePassword MYAPP_UPLOAD_STORE_PASSWORD
keyPassword 'android' keyAlias MYAPP_UPLOAD_KEY_ALIAS
keyPassword MYAPP_UPLOAD_KEY_PASSWORD
}
} }
} }
buildTypes { buildTypes {