flutter 开发ios升级到iOS13之后运行报错

iOS系统升级到ios13之后,flutter真机运行报错 报错信息为

ios-deploy[76102:3087663] [ !! ] Error 0xe800007f: Device doesn't support wireless sync. AMDeviceStartService(device, CFSTR("com.apple.debugserver"), &gdbfd, NULL)
Could not install build/ios/iphoneos/Runner.app on 00008020-001D51D42E08002E.
Try launching Xcode and selecting "Product > Run" to fix the problem:
  open ios/Runner.xcworkspace

因为 dart2.6版本 flutter1.10版本之后支持iOS13系统

解决办法

flutter channel dev

// 或下面
// flutter channel master

// 然后执行
flutter doctor
 

你可能感兴趣的:(Flutter)