Flutter无法在ios真机上调试解决

Flutter无法在ios真机上调试解决_第1张图片

Could not build the precompiled application for the device.

Error (Xcode): No profiles for 'com.example.drag' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'com.example.drag'. Automatic signing is disabled and unable to generate a profile. To enable automatic signing, pass -allowProvisioningUpdates to xcodebuild.

之前有人写的是清空xcode这个那个缓存,然后flutter clean 再关闭编辑器重新打开什么的.我都不管用.

实际上很简单

1.

再flutter的iso目录右键,在Finder中打开,Windows下就是在资源管理器中打开这个ios目录.

Flutter无法在ios真机上调试解决_第2张图片

然后使用xcode打开

Flutter无法在ios真机上调试解决_第3张图片

直接双击此文件即可.

然后再xcode中点运行调试

Flutter无法在ios真机上调试解决_第4张图片

build的时候会提示你需要SignIn,因为我这个错误已经过去了所以没办法截图了.

就是登录你的苹果id.

登录以后由于com.example.drag不是属于你的team 所以有以下提示

Failed to register bundle identifier. The app identifier "com.example.drag" cannot be registered to

在try again按钮上方的bundle 改成你自己的就可以了. 比如 com.xxxxx.drag

再重新登录.

运行 还是失败.

在ios上进入设置->通用->开发者APP中信任你的id,然后再重新build

你可能感兴趣的:(MAC,Flutter,flutter,xcode,ios)