Reputation: 1479
I run a Flutter app in debug mode on my iPhone 11 from Xcode but when I unplug the iPhone from the mac, the app doesn't open again. My iPhone software is 14.1 and my Xcode version is 12.1. Is there a solution to this?
Upvotes: 2
Views: 59
Reputation: 555
With the most recent release of flutter (1.22), you need to keep your iPhone plugged in to run your app from the IDE. There is no workaround unfortunately.
It was announced here:
A restriction disables running debug apps on iOS 14 devices except as part of the debugging process
https://medium.com/flutter/announcing-flutter-1-22-44f146009e5f
Upvotes: 1