We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5f05ba commit e8a9bc0Copy full SHA for e8a9bc0
.github/workflows/build.yaml
@@ -85,12 +85,14 @@ jobs:
85
if: matrix.platform == 'ubuntu-22.04'
86
run: |
87
export NDK_HOME=$ANDROID_HOME/ndk/27.0.11902837
88
- npm run tauri android build
+ npm run tauri android build -- -- --target armv7
89
+ npm run tauri android build -- -- --target aarch64
90
91
- name: Push to release
92
93
uses: softprops/action-gh-release@v1
94
with:
95
tag_name: ${{ env.RELEASE_VERSION }}
96
files: |
- src-tauri/gen/android/app/build/outputs/apk/release/*
97
+ src-tauri/gen/android/app/build/outputs/apk/release/*
98
+ src-tauri/gen/android/app/build/outputs/apk/universal/release/*
0 commit comments