Skip to content

Commit

Permalink
hive-oauth2-syncfusion-signing
Browse files Browse the repository at this point in the history
  • Loading branch information
ARYPROGRAMMER committed Oct 4, 2024
1 parent 18731f7 commit 55eeb9d
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ android {

signingConfigs{
release{
storeFile file('mykey.jks')
storePassword System.getenv('STORE_PASSWORD')
keyAlias System.getenv('KEY_ALIAS')
keyPassword System.getenv('KEY_PASSWORD')
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
}
}

Expand All @@ -60,8 +60,7 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so flutter run --release works.
signingConfig = signingConfigs.debug
signingConfig = signingConfigs.release
signingConfig signingConfigs.release
}
}
}
Expand Down

0 comments on commit 55eeb9d

Please sign in to comment.