昨天刚刚升的Xcode7.3和iOS9.3,然后没怎么使用这两样就下班了,但是今天早上来了之后,就发现突然之间不能真机测试和运行代码了,一看才发现xcode报错: An App ID with Identifier 'com.XXX.XXX’ is not available. Please enter a different string.  本来以为是证书问题,然后把证书删除,重新加载一遍还是不行,没办法,就求助了度娘.. 功夫不负有心人,再找了一个个方法还有看了stack好多之后,终于找到…
1. Error: An App ID with identifier "*" is not avaliable. Please enter a different string.   错误原因是这个bundle ID已经被别人提前占用了,bundle ID必须是唯一的.解决办法当然是修改你的bundle ID 了.   高级iOS交流群,只交流技术,不闲聊,不发与技术无关的图.群号:45992174…
Error: An App ID with identifier "*****" is not avaliable. Please enter a different string. 错误原因是这个bundle ID已经被别人提前占用了.这种错误一般发生在你运行别人的项目. 解决办法当然是修改你的bundle ID 了,修改bundle ID 会遇到一大堆问题,具体可参看这篇文章: http://blog.csdn.net/soindy/article/details/47184933…
Error: An App ID with identifier "*****" is not avaliable. Please enter a different string. 错误原因是这个bundle ID已经被别人提前占用了.这种错误一般发生在你运行别人的项目. 解决办法当然是修改你的bundle ID了,虽然修改bundle ID会遇到一大堆问题.…
百度上这帮人,真的服了,没有一个人能解决问题,最后在 stackoverflow 上找到解决方法 The Application ID Name should be same as application bundle identifier, if you application bundle identifier is com.abc.xyz than the application ID name for this bundle ID should be XC com abc xyz A n…
解决方法: 1.移除钥匙串中的开发证书,重新导入, 完全关闭Xcode; 2.再次打开Xcode,通过 Preferences - View Details - download 新的证书: 3.选择正确的appID,运行项目.…
百度了很多,但大多的解决办法就是 更改BundleID,的确管用,,但是有的情况下,你需要跟同事合作,公用同一个BundleID, 我是这样处理的:工具栏中打开Window—project删除所有工程,去钥匙串中删掉开发者证书,然后去开发者账号那里download All一下就好了…
1.完全关闭Xcode; 2.找到钥匙串,将钥匙串(Keychain)中的对应证书移除: 3.再次打开Xcode,通过 Preferences - Account 4. 删除原先的账号重新登录, 搞定~…
免费开发者证书真机调试App ID失效问题:"Unable to add App ID because the '10' App ID limit in '7' days has been exceeded."解决方案总结. 前言 今天(4月29日),笔者在做免费开发者证书真机调试的时候.发现如下问题: 问题: Unable to add App ID because the '10' App ID limit in '7' days has been exceeded. Unable…
Unable to add App ID because the '10' App ID limit in '7' days has been exceeded. 官方的原因是对bundle identifier进行限制,避免申请太多的bundle identifier. 解决方法:将bundle identifier替换成已经可以使用的bundle identifier即可…