问题:xcode 7编译错误:bitcode is not supported on versions of iOS prior to 6.0
解决:Build Options | Enable Bitcode 设置为No即可
原因:这是Apple Watch使用的
问题:Build iOS时提示没法拉起Xcode:
UnityException: Launching iOS project via Xcode4 failed. Check editor log for details。
解决:最新版xcode有这个问题,手动打开xcode即可。
问题:在使用Append模式导出xcode时,Unity出现以下错误:
Error building Player: KeyNotFoundException: The given key was not present in the dictionary.
解决:This issue has been fixed. The fix will appear in 4.6.6p1 and 5.0.3.
问题:app installation failed an unknow error
解决:(1)Clean & Build(2)重启XCode(3)Window -> Projects -> 选择项目 -> 删除Derived Data
问题:This application's application-identifier entitlement does not match that of the installed application. These values must match for an upgrade to be allowed.
解决:iPhone上已经装了包标识符一样的 App,删掉再运行。
问题:在使用Xcode进行真机调试时,弹出对话框”Could not find Developer Disk Image"
解决:在“/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport”里列出了当前版本的Xcode7.0支持的设备列表。
如果没有不支持当前ios版本则需要升级xcode。
Build iOS的2个选项:
- Append:只更新变化的部分
- Replace:重新替换所有部分
在点run的时候你会发现,所有的scene和Resources里的东西都会打包成assets结尾的东西,复制到目录下,这个过程的长短,取决于你的scene有多大,你的Resources内容多不多。
问题:如何查看一个ipa的证书
解决:将ipa解压出app,然后运行命令
codesign -vv -d ***.app,即可查看
网友评论