Fix: iOS embedMetadata method + Android APK path detection

This commit is contained in:
zarzet
2026-01-09 02:31:01 +07:00
parent 7a009ad0af
commit 5692a76650
2 changed files with 80 additions and 1 deletions
+8 -1
View File
@@ -125,7 +125,14 @@ jobs:
run: dart run flutter_launcher_icons
- name: Build APK (Release - unsigned)
run: flutter build apk --release --split-per-abi
run: |
flutter build apk --release --split-per-abi || true
# Verify APKs were created
ls -la build/app/outputs/flutter-apk/
if [ ! -f "build/app/outputs/flutter-apk/app-arm64-v8a-release.apk" ]; then
echo "ERROR: APK not found!"
exit 1
fi
- name: Sign APKs
uses: r0adkll/sign-android-release@v1