Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsan6sha committed Oct 24, 2024
1 parent e87321c commit bd324f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ android {
applicationId "land.fx.fotos"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 15
versionName "1.4.0"
versionCode 123
versionName "1.6.8"
}
signingConfigs {
release {
storeFile file('photos.keystore')
storePassword 'photos'
keyAlias 'photos_alias'
keyPassword 'photos'
storeFile file(System.getenv("MYAPP_RELEASE_STORE_FILE"))
storePassword System.getenv("MYAPP_RELEASE_STORE_PASSWORD")
keyAlias System.getenv("MYAPP_RELEASE_KEY_ALIAS")
keyPassword System.getenv("MYAPP_RELEASE_KEY_PASSWORD")
}
debug {
storeFile file('debug.keystore')
Expand Down

0 comments on commit bd324f5

Please sign in to comment.