Skip to content

Commit

Permalink
Fix signing config (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbro112 authored Aug 29, 2024
1 parent f137fe2 commit 5d74593
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android_release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
DECODED_KEYSTORE_PATH: ${{ secrets.ANDROID_RELEASE_KEYSTORE_PATH }}
run: |
echo $ENCODED_KEYSTORE > keystore_base64.txt
base64 -d keystore_base64.txt > $DECODED_KEYSTORE_PATH
base64 -d keystore_base64.txt > ./app/$DECODED_KEYSTORE_PATH
- name: Build AAB
env:
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ android {
getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
)
val signingConfigName = if (runningEnv == "release_workflow") "release" else "debug"
signingConfigs.getByName(signingConfigName)
signingConfig = signingConfigs.getByName(signingConfigName)
}
}
buildFeatures {
Expand Down

0 comments on commit 5d74593

Please sign in to comment.