简体   繁体   中英

Export iOS IPA file with eclipse (libGDX/RoboVM)

I'm trying to export my iOS libGDX project and I followed the instructions here . I have everything setup in iTunes Connect and I have both my Developer and Distribution Signing Certificates. I right click my iOS project in eclipse, choose RoboVM Tools --> Package for App Store/Ad-Hoc distribution, filled out the required fields and I get a message from Console saying

10/26/14 3:31:57 AM: [ INFO] Creating package in /Users/Me/Documents/myJavaStuff/myIOS Game/iOS IPA ...

But nothing happens after that. No error message, no other console messages and no file to import to Apple. Anyone else experience this?

Would this have anything to do with my info.plist.xml. I didn't touch a lot of these key strings except for CFBundleIdentifier

<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>${app.name}</string>
<key>CFBundleExecutable</key>
<string>${app.executable}</string>
<key>CFBundleIdentifier</key>
<string>com.myertha.paperpig</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${app.name}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>${app.version}</string>

Well... I finally got it to work, but I took a route I was hoping I wouldn't take. I reinstalled my Eclipse, and all the different required plug-ins (Gradle, ADT, RoboVM, etc). Process which took an more than an hour. I was in Eclipse ver 4.3 but now I'm using 4.4 which is Eclipse Luna. But other than that, everything else is still the same but I am now able to export using RoboVM Tools --> Package for App Store/Ad-Hoc distribution. Weird, but whatever works...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM