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 cdc196f commit b4264aaCopy full SHA for b4264aa
.github/workflows/pr_validation.yaml
@@ -208,8 +208,11 @@ jobs:
208
xcrun simctl boot "$SIMULATOR_ID"
209
xcrun simctl list devices booted
210
211
+ # Install the app using xcrun. Apparently, there's no Flutter command to
212
+ # install an unsigned iOS app. The "flutter install" command only works if
213
+ # the app is signed.
214
- name: Install the app
- run: flutter install --debug --verbose
215
+ run: xcrun simctl install booted build/ios/iphoneos/Runner.app
216
217
- name: Run the iOS deep link tests
218
run: flutter test test_driver/deep_link_ios_test.dart
0 commit comments