Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Zedonboy committed Jan 28, 2025
1 parent af0852a commit 5c33f86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
echo "${{ secrets.ANDROID_KEY_PASSWORD }}" > key_password.txt
# Use full path to zipalign
export ZIPALIGN=$ANDROID_HOME/build-tools/33.0.0/zipalign
export ZIPALIGN=$ANDROID_HOME/build-tools/35.0.0/zipalign
for apk in build/app/outputs/flutter-apk/*-release.apk; do
[ -f "$apk" ] || continue
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@ jobs:

- name: Build SampleApplication
run: |
ls -a $ANDROID_HOME/build-tools/35.0.0
zipalign.sh --no-daemon build
LATEST_BUILD_TOOLS=$(ls $ANDROID_HOME/build-tools | sort -V | tail -n 1)
ZIPALIGN="$ANDROID_HOME/build-tools/$LATEST_BUILD_TOOLS/zipalign"
echo "Using zipalign from: $ZIPALIGN"

0 comments on commit 5c33f86

Please sign in to comment.