fix: update Android build command to target aarch64 architecture and enhance opener permissions
Some checks failed
Build / check-version (push) Successful in 6s
Build / build-linux (push) Successful in 6m11s
Build / build-windows (push) Successful in 7m49s
Build / build-android (push) Has started running
Build / create-release (push) Has been cancelled

This commit is contained in:
2026-01-25 20:53:12 +11:00
parent c612dfa824
commit 72af2b3ef7
2 changed files with 5 additions and 1 deletions

View File

@@ -299,7 +299,7 @@ jobs:
shell: powershell shell: powershell
run: | run: |
$env:PATH = "$env:USERPROFILE\.cargo\bin;$env:PATH" $env:PATH = "$env:USERPROFILE\.cargo\bin;$env:PATH"
npm run tauri android build npm run tauri android build -- --target aarch64
env: env:
ANDROID_HOME: ${{ env.ANDROID_HOME }} ANDROID_HOME: ${{ env.ANDROID_HOME }}
NDK_HOME: ${{ env.ANDROID_HOME }}/ndk/25.2.9519653 NDK_HOME: ${{ env.ANDROID_HOME }}/ndk/25.2.9519653

View File

@@ -7,6 +7,10 @@
"permissions": [ "permissions": [
"core:default", "core:default",
"opener:default", "opener:default",
{
"identifier": "opener:allow-open-url",
"allow": [{ "url": "http://**" }, { "url": "https://**" }]
},
"notification:default", "notification:default",
"autostart:default" "autostart:default"
] ]