我正在使用 Eclipse、libGDX 1.2.0 和 RoboVM 0.0.14。
在过去的几天里,我试图将我的应用上传到应用商店,但没有成功。
说实话,我真的不知道我做错了什么,所以我决定附上以下资源,希望这里的人能够帮助我解决这个问题。
谢谢。
您会在下面找到:
- 应用程序加载器错误消息。
- build.gradle 文件。
- 应用 ID 详细信息(来自 developer.apple.com)。
- iOS 证书(来自 developer.apple.com)。
- iOS 配置文件(来自 developer.apple.com)。
- 应用信息(来自 iTunes 连接)。
- 钥匙串(keychain)访问文件(在我的 Mac 上)。
应用程序加载器错误消息:
Error 1: "The bundle identifier cannot be changed from the current
value, 'com.tzamots.nGame'. If you want to change your bundle identifier, you will need to create a new application in iTunses Connect."
Error 2: " invalid Code Signing Entitlements. The entitlements in your
app bundle signature do not match the ones that are contained in the
provisioning profile. According to the provisioning profile, the
bundle contains a key value that is not allowed:
'J3P5A3B6AS.com.tzamots.noniGame.iOSLauncher' for key
'application-identifier' in 'ayload/iOSLaouncher.app/IOSLaouncher"
iOS 目录下的build.gradle 文件:
robovm {
iosSignIdentity = "iPhone Distribution: Tzamots (J3P5A3B6AS)"
iosProvisioningProfile = "nGame_Dis (J3P5A3B6AS.com.tzamots.nGame)"
iosSkipSigning = false
stdoutFifo = ""
stderrFifo = ""
}
应用 ID 详细信息(来自 developer.apple.com)
Name: noniGame
Prefix: J3P5A3B6AS
ID: com.tzamots.nGame
iOS 证书(来自 developer.apple.com)
1.
Name: Tzamots
Type: iOS Development
2.
Name: Tzamots
Type: iOS Distribution
iOS 配置文件(来自 developer.apple.com)
1.
Name: iOS Team Provisioning Profile: com.tzamots.nGame
Type: Development
App ID noniGame (com.tzamots.nGame)
Status: Active (Managed by Xcode)
2.
Name: nGame_Dev
Type: Development
App ID noniGame (com.tzamots.nGame)
Status: Active
3.
Name: nGame_Dis
Type: Distribution
App ID noniGame (com.tzamots.nGame)
Status: Active
应用信息(来自 iTunes 连接)
SKU: 123456
Bundle ID: com.tzamots.nGame
钥匙串(keychain)访问文件(在我的 Mac 上)
1.
Name: iPhone Developer: Tzamots (W72YA5HF6K)
2.
Name: iPhone Distribution: Tzamots (J3P5A3B6AS)
Best Answer-推荐答案 strong>
所以..我终于解决了
我不得不从我的 iOS 目录中的 build.gradle 中删除代码并将其替换到我的根目录下的 project(":ios") 然后我更改了 iosSignIdentity 等于我的钥匙串(keychain)访问中显示的分发证书的名称,iosProvisioningProfile 等于 developer.apple.com 上 iOS 配置文件中显示的名称。
对于解决方案的第二部分(错误 1),我必须打开 iOS 根目录下的 robovm.properties 文件并更改 app.id 使其与我使用的一样在我的配置文件中
关于android - 使用 RoboVM 将 App 上传到 Apple 的 App Store 时出现问题,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/25460154/
|