如何选择开发团队在颤振
问题描述:
我尝试部署使用谷歌的扑iOS应用到设备上创建iOS应用,但我得到的命令行上此错误:如何选择开发团队在颤振
Building an iOS app requires a selected Development Team with a Provisioning Profile
Please ensure that a Development Team is selected by:
1- Opening the Flutter project's Xcode target with
open ios/Runner.xcworkspace
2- Select the 'Runner' project in the navigator then the 'Runner' target
in the project settings
3- In the 'General' tab, make sure a 'Development Team' is selected
For more information, please visit:
https://flutter.io/setup/#deploy-to-ios-devices
Or run on an iOS simulator
在哪里,我该怎么办做这个?项目中没有“ios/Runner.xcworkspace”。我知道安装的证书和配置文件可以在我的Mac上运行,因为我使用Appcelerator在iOS设备上创建并安装了一个应用程序,并且它找到了我需要的一切,并在设备上完美运行。
答
open ios/Runner.xcodeproj
并按照相同的说明应该工作? Runner.xcodeworkspace是该模板的一个相对较新的添加项,创建的目的是允许Flutter项目与CocoaPods更好地集成。
如果这不起作用,请告诉我们。
是的,工作。谢谢。 – Joe