Skip to content

Commit

Permalink
Merge pull request #35 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 49c248d + 137b3b9 commit 5d54725
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ android {
}


signingConfigs {
release {
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']
}
}
// signingConfigs {
// release {
// 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']
// }
// }

buildTypes {
debug {
Expand All @@ -54,7 +54,7 @@ android {
}
def baseUrl = '\"https://cinema-movie-trivia.herokuapp.com/api/v1/getMovies"'
release {
signingConfig signingConfigs.release
// signingConfig signingConfigs.release
debuggable false
minifyEnabled false
resValue "string", "app_name_build", "FilmsTMDBRelease"
Expand Down

0 comments on commit 5d54725

Please sign in to comment.