We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdc5573 commit 1407d8bCopy full SHA for 1407d8b
.github/workflows/android.yaml
@@ -50,5 +50,7 @@ jobs:
50
51
- name: Build for Android
52
run: |
53
- flutter pub get
54
- flutter build apk --debug
+ dart pub global activate fvm
+ fvm install
55
+ fvm flutter pub get
56
+ fvm flutter build apk --debug
.github/workflows/ios.yaml
@@ -46,9 +46,11 @@ jobs:
46
47
- name: Build for iOS
48
49
cd ios
pod repo update
pod install
cd ..
- flutter build ios --release --no-codesign --no-tree-shake-icons
+ fvm flutter build ios --release --no-codesign --no-tree-shake-icons
0 commit comments