move the android secrets files in proximity to where they're used

This commit is contained in:
2025-04-05 16:25:17 -06:00
parent 4ee3ce0061
commit da1f08ebaa
2 changed files with 7 additions and 7 deletions

View File

@@ -1,10 +1,10 @@
apply plugin: 'com.android.application'
// Default values for signing properties
project.ext.MY_KEYSTORE_FILE = ""
project.ext.MY_KEYSTORE_PASSWORD = ""
project.ext.MY_KEY_ALIAS = ""
project.ext.MY_KEY_PASSWORD = ""
// These are sample values to set in gradle.properties.secrets
// MY_KEYSTORE_FILE=time-safari-upload-key-pkcs12.jks
// MY_KEYSTORE_PASSWORD=...
// MY_KEY_ALIAS=time-safari-key-alias
// MY_KEY_PASSWORD=...
// Try to load from environment variables first
project.ext.MY_KEYSTORE_FILE = System.getenv('ANDROID_KEYSTORE_FILE') ?: ""