Problems Uploading App To Apple's App Store Using Robovm
I'm using Eclipse, libGDX 1.2.0 and RoboVM 0.0.14. In the last couple of days I was trying to upload my app to the app store with no success. To be completely honest, I don't reall
Solution 1:
So.. I finally solved it :)
I had to remove the code from the build.gradle in my iOS directory and replace it in my root directory under project(":ios")
then I changed the iosSignIdentity
to be equal to the name of the distribution certificate as shown on my Keychain Access and the iosProvisioningProfile
to the name shown in iOS Provisioning Profiles on developer.apple.com.
for the second part of the solution (Error 1) I had to open the robovm.properties file under the iOS root and to change the app.id
so it will be like the one I used on my Provisioning Profile
Solution 2:
For a more complete snippet of how this looks, here goes!
(build.gradle in ios project)
robovm {
iosSignIdentity = "iPhone Distribution: HelloWorld"
iosProvisioningProfile = "MyGamesDistributionProfile"
iosSkipSigning = false
stdoutFifo = ""
stderrFifo = ""
}
Post a Comment for "Problems Uploading App To Apple's App Store Using Robovm"