libgdx IDEA 發佈ipa到AppStore

在不清楚怎麼用本身喜歡的開發環境發佈app是一件很痛苦的事。通過一番google和蒙以後,終於成功提交build到AppStore。再次總結一下注意點,但願能看見這篇嫖客的小夥伴都少走彎路。java

1. 在父項目的build.gradle中的project(":ios")中添加如下配置證書(紅色字體)ios

project(":ios") {
    apply plugin: "java"
    apply plugin: "robovm"

    configurations { natives }

    dependencies {
        compile project(":core")
        compile "org.robovm:robovm-rt:${roboVMVersion}"
        compile "org.robovm:robovm-cocoatouch:${roboVMVersion}"
        compile "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion"
        natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
        compile fileTree(dir: 'libs', include: '*.jar')//add at 20140828 for 內購
    }
    robovm { iosSignIdentity = "iPhone Distribution: XXXXXXXXXXXX" iosProvisioningProfile = "xxxxx" }
}

注意iosSignIdentity裏填的是鑰匙串裏的名字,而不是Xcode裏看到的。個人Xcode裏看到的是iOS Distribution,一直報找不到。app

至於怎麼弄證書就本身google吧,不復雜。字體

2. 運行gradle的ios [createIPA]命令,建立ipa。gradle

3. 在iTunes Connect建立對應的App,下載ApplicationLoader並上傳ipa。ui

--------------------------------------------------google

補充:spa

1. Info.plist.xml設定僅提供給iPhonecode

<key>UIDeviceFamily</key>
    <array>
        <integer>1</integer><!--iPhone/iPod-->
        <!--<integer>2</integer>iPad-->
    </array>

2. Info.plist.xml設定僅使用豎屏orm

<key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <!--<string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>-->
    </array>

3. 增長iOS7的120x120的icon,文件名能夠是Icon-60@2x.png

<key>CFBundleIcons</key>
    <dict>
        <key>CFBundlePrimaryIcon</key>
        <dict>
            <key>CFBundleIconFiles</key>
            <array>
                <string>Icon</string>
                <string>Icon-72</string>
                <string>Icon-60</string>
            </array>
        </dict>
    </dict>

4. 再次提交前,createIPA前修改版本號robovm.properties

app.version, app.build

相關文章
相關標籤/搜索