- no identity found Command /usr/bin/codesign failed
解决方法: stackoverflow 的解决方法是 xcode->preference->account->view detail -> refresh the provisioning profile
但是我这边最后一步是 没有刷新按钮 是一个 download all 的按钮 想到provisioning profile 和证书都是别人导给我的 所以没有采用这种方法
直接 进入 ~/Library/MobileDevice/Provisioning Profiles 文件夹 删除出问题的provisioning profile 然后重新导入就ok 了。
- ERROR ITMS-90475: “Invalid Bundle. iPad Multitasking support requires launch story board in bundle ‘xxxx’.”
ERROR ITMS-90474: “Invalid Bundle. iPad Multitasking support requires these orientations: ‘UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight’. Found ‘UIInterfaceOrientationPortrait’ in bundle ‘xxxx’.”
这是因为ios9 iPad 的分屏适配所致。解决方法有两个。1.最偷懒的方法:移除app对iPad Multitasking的支持,具体做法如下:
General->Deployment Info -> Requires full screen, 勾上即可
- 如何解决 错误code signing is required for product type ‘xxxxx’ in SDK ‘iOS 8.2’
当这种情况出现了:
1.看看自己工程里面的xxx-Info.plist文件里面的Bundle identifier是否正确
2.再看看自己工程中xxxTests里面的xxx-Info.plist里面的Bundle identifier是否保持一致
3.再去targets里面的xxxTests里面的code signing看看是不是跟远文件里面的code signing保持一致。
4.看看targets里面的General 选项 的Identity里面的team,这个里面是否包含了你的描述文件,以及你的设备的UDID是否已经添加到个人账号的设备里。