feat: Add Android SDK setup and package installation steps in build workflow
Build Android APK / build-apk (push) Failing after 2m17s

This commit is contained in:
2026-04-07 19:01:41 +07:00
parent 8dcd092c5e
commit d48e384767
+11 -1
View File
@@ -30,8 +30,18 @@ jobs:
with: with:
channel: stable channel: stable
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Install Android SDK packages
run: |
sdkmanager "platform-tools" "platforms;android-35" "build-tools;35.0.0"
yes | sdkmanager --licenses
- name: Show Flutter and Dart version - name: Show Flutter and Dart version
run: flutter --version run: |
flutter --version
flutter doctor -v
- name: Install dependencies - name: Install dependencies
run: flutter pub get run: flutter pub get