我在app store中有phonegap应用程序。现在我想要更新它。我在xcode中创建了新项目,更新了confog.xml: id - 与基础应用程序相同; 版本代码 - 增加一个; 版本 - 也增加一个
现在,当我尝试从安装了previos版本的设备上的xcode运行它时出现错误:无法更改应用程序的可执行权限
先前删除不合适的旧应用程序的解决方案,因为我需要用户已收集的数据
使用分发配置文件而不是开发配置文件的解决方案可能有效,但我没有找到如何在测试中添加分发配置文件
所以问题 - 如何测试?
由于
答案 0 :(得分:1)
This error occurs when you try to install an app into the device via xcode. This means that there is already an app in the device with the same bundle id, whose executable is mismatching with the new one you are trying to install. To fix this, you have to delete the old app with the same bundle id from the device.