我一直在开发一个应用程序并在xcode 7.3上运行良好 - 但升级到8.0版后我遇到了这个错误
错误详细信息:供应配置文件" IOS_Dis_AppStore"不包括签名证书" iPhone开发者:NAME(********)"。
错误详细信息:产品类型'应用程序'需要进行代码签名。在SDK' iOS 10.0'
我使用Appcelerator CLI 5.5.0
我认为已发布到该设置(来自https://www.appcelerator.com/blog/2016/08/release-candidate-for-titanium-sdk-5-5-0-and-appcelerator-cli-5-5-0)
<ios>
<team-id>YOUR-TEAM-ID</team-id>
<!-- more iOS specific keys -->
</ios>
但不确定将它放在tiapp.xml文件中的哪个位置 我在tiapp.xml中有这个
<ios>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIRequiresPersistentWiFi</key>
<false/>
<key>UIPrerenderedIcon</key>
<false/>
<key>UIStatusBarHidden</key>
<false/>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleDefault</string>
</dict>
</plist
我试图创建新的个人资料和证书 - 但没有工作 帮助帮助 - / T
答案 0 :(得分:2)
它超出了plist元素。
<ios>
<team-id>YOUR-TEAM-ID</team-id>
<plist>
<!-- Your Info.plist keys go inside here -->
</plist>
</ios>