Add signed Android artifact automation

This commit is contained in:
Jeppe Bundgaard
2026-07-02 14:48:47 +02:00
parent f1a34abe87
commit 06540f5342
4 changed files with 86 additions and 4 deletions
+4 -1
View File
@@ -55,8 +55,11 @@
"twa:build": "bubblewrap build",
"twa:update": "bubblewrap update",
"mobile:sync": "npm run build && npx cap sync",
"mobile:android:sync": "npm run build && npx cap sync android",
"mobile:permissions:check": "node scripts/mobile/check-permissions.mjs",
"mobile:android:bundle": "npm run mobile:sync && npm run mobile:permissions:check && cd android && ./gradlew bundleRelease",
"mobile:android:signing:check": "node scripts/mobile/check-android-signing-env.mjs",
"mobile:android:bundle": "npm run mobile:android:signing:check && npm run mobile:android:sync && npm run mobile:permissions:check && cd android && ./gradlew bundleRelease",
"mobile:android:bundle:unsigned": "npm run mobile:android:sync && npm run mobile:permissions:check && cd android && ./gradlew bundleRelease",
"mobile:ios:sync": "npm run mobile:sync && npm run mobile:permissions:check",
"playstore:graphics": "node scripts/playstore/generate-graphics.mjs"
},