0

我在应用商店有 phonegap 应用程序。现在我想更新它。我在 xcode 中创建了新项目,更新了 confog.xml: id - 与基本应用程序中的相同;版本代码 - 加一;版本 - 也增加一

现在,当我尝试在安装了 previos 版本的设备上从 xcode 运行它时,出现错误:无法更改应用程序的可执行权限

以前删除旧应用程序的解决方案不适合,因为我需要用户已经收集的数据

使用分发配置文件而不是开发配置文件的解决方案,可能有效,但我没有找到如何将分发配置文件添加到测试

所以问题 - 如何测试它?

谢谢

4

1 回答 1

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.
于 2013-09-30T13:28:50.260 回答