Skip to content

Commit

Permalink
Merge pull request #33 from rogergcc/dev
Browse files Browse the repository at this point in the history
wip update buildgradel
  • Loading branch information
rogergcc authored Oct 14, 2024
2 parents dbfee28 + 6ae21fa commit ca53fc5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ android {

signingConfigs {
release {
keyAlias localProperties['ALIAS']
keyPassword localProperties['KEY_PASSWORD']
storeFile file(localProperties['ANDROID_KEYSTORE'])
storePassword localProperties['KEY_STORE_PASSWORD']
keyAlias System.getenv('ALIAS') ?: localProperties['ALIAS']
keyPassword System.getenv('KEY_PASSWORD') ?: localProperties['KEY_PASSWORD']
storeFile file(System.getenv('ANDROID_KEYSTORE') ?: localProperties['ANDROID_KEYSTORE'])
storePassword System.getenv('KEY_STORE_PASSWORD') ?: localProperties['KEY_STORE_PASSWORD']
}
}

Expand Down

0 comments on commit ca53fc5

Please sign in to comment.