PhoneGap 无法上传 iOS 应用
Posted
技术标签:
【中文标题】PhoneGap 无法上传 iOS 应用【英文标题】:PhoneGap cant upload iOS app 【发布时间】:2015-07-21 03:33:58 【问题描述】:我尝试上传我的 ios 应用,但收到 all 这些错误:
我的配置 XML 如下所示:
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com.phonegap.helloworld" version="1.0.0">
<name>BP</name>
<description>Hello World sample application that responds to the deviceready event.</description>
<author href="http://phonegap.com" email="support@phonegap.com">PhoneGap Team</author>
<content src="index.html"/>
<preference name="permissions" value="none"/>
<preference name="orientation" value="default"/>
<preference name="target-device" value="universal"/>
<preference name="fullscreen" value="false"/>
<preference name="webviewbounce" value="false"/>
<preference name="disallowOverscroll" value="true" />
<preference name="prerendered-icon" value="true"/>
<preference name="stay-in-webview" value="false"/>
<preference name="ios-statusbarstyle" value="black-opaque"/>
<preference name="detect-data-types" value="true"/>
<preference name="exit-on-suspend" value="false"/>
<preference name="show-splash-screen-spinner" value="true"/>
<preference name="auto-hide-splash-screen" value="true"/>
<preference name="disable-cursor" value="false"/>
<preference name="android-minSdkVersion" value="7"/>
<preference name="android-installLocation" value="auto"/>
<gap:plugin name="org.apache.cordova.battery-status"/>
<gap:plugin name="org.apache.cordova.camera"/>
<gap:plugin name="org.apache.cordova.media-capture"/>
<gap:plugin name="org.apache.cordova.console"/>
<gap:plugin name="org.apache.cordova.contacts"/>
<gap:plugin name="org.apache.cordova.device"/>
<gap:plugin name="org.apache.cordova.device-motion"/>
<gap:plugin name="org.apache.cordova.device-orientation"/>
<gap:plugin name="org.apache.cordova.dialogs"/>
<gap:plugin name="org.apache.cordova.file"/>
<gap:plugin name="org.apache.cordova.file-transfer"/>
<gap:plugin name="org.apache.cordova.geolocation"/>
<gap:plugin name="org.apache.cordova.globalization"/>
<gap:plugin name="org.apache.cordova.inappbrowser"/>
<gap:plugin name="org.apache.cordova.media"/>
<gap:plugin name="org.apache.cordova.network-information"/>
<gap:plugin name="org.apache.cordova.splashscreen"/>
<gap:plugin name="org.apache.cordova.vibration"/>
<icon src="icon.png"/>
<gap:splash src="splash.png" gap:platform="android" gap:qualifier="port-ldpi"/>
<gap:splash src="splash.png" gap:platform="android" gap:qualifier="port-mdpi"/>
<gap:splash src="splash.png" gap:platform="android" gap:qualifier="port-hdpi"/>
<gap:splash src="splash.png" gap:platform="android" gap:qualifier="port-xhdpi"/>
<gap:splash src="splash.png" gap:platform="blackberry"/>
<gap:splash src="splash.png" gap:platform="ios" />
<gap:splash src="splash.png" gap:platform="ios" />
<gap:splash src="splash.png" gap:platform="ios" />
<gap:splash src="splash.png" gap:platform="ios" />
<gap:splash src="splash.png" gap:platform="ios" />
<gap:splash src="splash.png" gap:platform="winphone"/>
<access origin="*"/>
<plugin name="cordova-plugin-whitelist" version="1"/>
<gap:plugin name="org.apache.cordova.device" version="0.2.3" />
<gap:plugin name="org.apache.cordova.geolocation" />
<allow-intent href="http://*/*"/>
<allow-intent href="https://*/*"/>
<allow-intent href="tel:*"/>
<allow-intent href="sms:*"/>
<allow-intent href="mailto:*"/>
<allow-intent href="geo:*"/>
<platform name="android">
<allow-intent href="market:*"/>
</platform>
<platform name="ios">
<allow-intent href="itms:*"/>
<allow-intent href="itms-apps:*"/>
</platform>
</widget>
【问题讨论】:
你在使用 Xcode 吗?还是电话差距? Phonegap 构建来创建这个 【参考方案1】:缺少多个 iPhone + iPad 设备的图标,PhoneGap Build 无法为所有设备生成完全图标:
<!-- iPhone / iPod Touch - lower 4s -->
<icon src="icon/icon.png" gap:platform="ios" />
<icon src="icon/icon@2x.png" gap:platform="ios" />
<!-- iPhone / iPod Touch - 5-5s -->
<icon src="icon/icon-60.png" gap:platform="ios" />
<icon src="icon/icon-60@2x.png" gap:platform="ios" />
<!-- iPhone6-6+ -->
<icon src="icon/icon-60@3x.png" gap:platform="ios" />
<!-- iPad ios < 6.1-->
<icon src="icon/icon-72.png" gap:platform="ios" />
<icon src="icon/icon-72@2x.png" gap:platform="ios" />
<!-- iPad -->
<icon src="icon/icon-76.png" gap:platform="ios" />
<icon src="icon/icon-76@2x.png" gap:platform="ios" />
<!-- Settings Icon -->
<icon src="icon/icon-small.png" gap:platform="ios" />
<icon src="icon/icon-small@2x.png" gap:platform="ios" />
<!-- Spotlight Icon -->
<icon src="icon/icon-40.png" gap:platform="ios" />
<icon src="icon/icon-40@2x.png" gap:platform="ios" />
【讨论】:
以上是关于PhoneGap 无法上传 iOS 应用的主要内容,如果未能解决你的问题,请参考以下文章
(ios + phone gap) - 使用仪器配置最终应用程序
Phonegap 条码扫描仪无法识别 windows phone 上的任何条码
jQuery Mobile无法在PhoneGap Windows Phone 8中运行