Application-identifier entitlement does not match问题的解决

以下是一个老外的回答:

This happened to me after installing a build from TestFlight and overwriting it with the debug build from Xcode.

Nothing helped, no clean build, no Derived Data voodoo …

How I finally got it working was:

- Delete debug build from phone (and watch if it’s still there).

- Download TestFlight build again.

- Install Test Flight Apple Watch app build from TestFlight app.

- Delete TestFlight Watch app build from Phone using the TestFlight app.

- Delete the TestFlight iOS app build from the phone

- Now everything seems back to normal. I can run the debug build from Xcode.

but一般来说不用这么复杂。只要把你的设备上的debug的app删除了就可以。如果删除了还是不行,再按照他的方法试一次。

时间: 2024-08-01 23:49:25

Application-identifier entitlement does not match问题的解决的相关文章

This application's application-identifier entitlement does not match that of the installed application. These values must match for an upgrade to be allowed.

运行真机报错This application's application-identifier entitlement does not match that of the installed application. These values must match for an upgrade to be allowed. 解决: With your device connected, and Xcode open, select Window->Devices In the left tab

IE6,IE7,IE8下报JS错误:expected identifier, string or number的原因及解决的方法

今天在调试一个页面的时候遇到一个问题,在IE9下执行得非常好的脚本,在IE8里打开的时候弹出错误:expected identifier, string or number,依照经验,应该是定义对象的时候最后一个属性末尾跟了逗号,但检查一遍后没发现有这样的情况,后来细致看了一下报错的位置,发现有定义json对象属性时,属性名没实用引號括起来,于是加了上去再试,问题攻克了. 综上所述,当出现expected identifier, string or number的错误时,你首先应该检查在使用对象

VS 2012 No exports were found that match the constraint 解决办法

VS 2012 No exports were found that match the constraint 解决办法 删除C:\Users\你的用户名\AppData\Local\Microsoft\VisualStudio\11.0 这里面的全部文件 文章出处:http://blog.luobotou.org/vs-2012-no-exports-were-found-that-match-the-constraint/

安装wps导致 application/kset 上传文件类型报错解决办法

电脑中安装wps上传execl时,上传.xls文件时 报错 application/kset 文件类型不正确 打印array() print_r($_FILES ) 结果如下: Array ( [userfile] => Array ( [name] => Template.xls[type] => application/kset[tmp_name] => C:\\Windows\\temp\\phpACC.tmp [error] => 0 [size] => 768

IE6,IE7,IE8下报JS错误:expected identifier, string or number的原因及解决办法

今天在调试一个页面的时候遇到一个问题,在IE9下运行得很好的脚本,在IE8里打开的时候弹出错误:expected identifier, string or number,按照经验,应该是定义对象的时候最后一个属性末尾跟了逗号,但检查一遍后没发现有这种情况,后来仔细看了一下报错的位置,发现有定义json对象属性时,属性名没有用引号括起来,于是加了上去再试,问题解决了. 综上所述,当出现expected identifier, string or number的错误时,你首先应该检查在使用对象字面

SVN使用Repository UUID doesn't match expected 的解决办法

参考:1.http://blog.csdn.net/xuzhuang2008/article/details/84742292.http://zhidao.baidu.com/link?url=w1G6HVeajO68IRoAZb2wXjKG22nUyXQksvJTy_0Rh2nb4dBYWhmfplnvFWBI_HVcIW2dv5iIStCiKGd5u8FidK 具体办法如下: 1.首先查看项目的所有者的UUID # svnlook uuid E:\Repositories\javaee201

java compiler 与 facet doesn't match 错误的解决方法

java compiler 与 facet doesn't match 错误的解决方法 原文地址:https://www.cnblogs.com/CrisZjie180228/p/9319772.html

Keil编译出现“Error: L6406W: No space in execution regions with .ANY selector match Section"的解决办法

情景: 在编译Keil工程时,compile编译能够通过,但在linking过程中,出现一大串"Error: L6406W: No space in execution regions with .ANY selector match Section"的错误. 分析: 这个出现的原因是因为芯片RAM空间不足,无法执行程序.通常RAM的空间会比较小,ROM空间相对较大. 解决办法: 两个思路,一个是扩大RAM,二是减少需要存在RAM里的内容: 1. 尝试修改"Target Op

Spring MVC关于IE对application/json的content-type不支持解决方案---duang 解决了

在现代的web开发中,我们为了用户的体验广泛的使用异步开发,用户看不见后台的实际执行情况,只关心结果,所以良好的提示消息决定了系统对用户的态度,所以要开发一套标准的提示消息,我选择了JSON,但是在实际开发过程中,会发现IE不支持application/json类型,所以我也在网上查找了好多同样的问题,但是大部分说法都是注册注册表,但是我门发布系统又不能让每个用户都注册一下注册表,这显然很不合理,所以我发现,只要修改返回的内容的类型(ContentType)即可解决问题. 1,默认情况下,我们会