1 parent 3f59b9c commit 237e55dCopy full SHA for 237e55d
1 file changed
.github/workflows/build_apk.yml
@@ -20,17 +20,17 @@ jobs:
20
21
- uses: subosito/flutter-action@v2
22
with:
23
- flutter-version: '3.13.0'
+ flutter-version: '3.35.3' # Updated to the suggested version
24
channel: 'stable'
25
26
- name: Get dependencies
27
run: flutter pub get
28
29
- - name: Build APKs (Split per ABI)
30
- run: flutter build apk --release --split-per-abi
+ - name: Build APK for ARM64
+ run: flutter build apk --release --target-platform=android-arm64
31
32
- - name: Upload ARM64 APK
+ - name: Upload APK
33
uses: actions/upload-artifact@v4
34
35
name: release-apk-arm64
36
- path: build/app/outputs/flutter-apk/app-arm64-v8a-release.apk
+ path: build/app/outputs/flutter-apk/app-release.apk
0 commit comments