zoukankan      html  css  js  c++  java
  • xcode5真机调试出错

    真机调试出错

    Your build settings specify a provisioning profile with the UUID “0A9A766F-E75E-4826-B3FF-3EE5A908D35B”, however, no such provisioning profile was found.  Xcode can resolve this issue by downloading a new provisioning profile from the Member Center. 

    解决方法转载自http://blog.csdn.net/lengshengren/article/details/12748551 

    在Archive项目时,出现了“Your build settings specify a provisioning profile with the UUID “”, however, no such provisioning profile was found”的出错。一直提示指定UUID的provisioning profile找不到,感觉很奇怪。明明自己的provisioning profile是刚下载好的,并且全是新安装。于是通过谷歌找到了答案。

    参考地址:http://stackoverflow.com/questions/1760518/codesign-error-provisioning-profile-cannot-be-found-after-deleting-expired-prof

    这里所说的就是要通过修改你的项目的.xcodeproj文件来解决上述的错误。

    1.找到项目中的**.xcodeproj文件,点击右键,show package contents(打开包内容)。

    2.打开后找到project.pbxproj文件,用文本编辑器打开。其实就是右键,点击open就好了。

    3.打开这个文件后,按command+F,在这个文件中查找“PROVISIONING_PROFILE",找到和这个“

    PROVISIONING_PROFILE = "487F3EAC-05FB-4A2A-9EA0-31F1F35760EB"; "PROVISIONING_PROFILE[sdk=iphoneos*]" = "487F3EAC-05FB-4A2A-9EA0-31F1F35760EB";”类似的都删除。
    4.然后保存文件,重新打开项目。xcode会提示你重新下载安装provisioning profile文件。下载后安装上就可以。
    ps:我在xcode5中,是它自己通过网络安装的。


    上面那个我也是网络自动安装的
  • 相关阅读:
    GlusterFS 配置及使用
    zabbix-监控Linux服务器
    ansible安装及使用
    使用ansible 完成yum安装lamp环境
    mysql基础
    shell基础
    shell
    Javascript动画效果(四)
    Javascript动画效果(三)
    Javascript动画效果(二)
  • 原文地址:https://www.cnblogs.com/ioschen/p/3394847.html
Copyright © 2011-2022 走看看