我使用PhoneGap Build構建了一個應用程序,併成功將其提交給Google Play。成功意味着它可以通過我的Nexus S上的Google Play和運行Android的其他智能手機(Android 2.2及更高版本)使用。使用PhoneGap Build構建的Android應用程序不會顯示在Google Play上的平板電腦
但是,該應用並沒有出現在我嘗試過的任何Android平板電腦設備上的Google Play(華碩/谷歌Nexus 7與Android 4.2.1和三星平板電腦與Android 4.0.1)。
如果我要從Hockey App下載.apk,應用程序將按照預期安裝並運行。
我的PhoneGap構建config.xml文件看起來像這樣(摘錄):
<!-- Multi-Platform -->
<preference name="phonegap-version" value="2.2.0" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="false" />
<preference name="orientation" value="default" />
<!-- iOS -->
<preference name="webviewbounce" value="false" />
<preference name="prerendered-icon" value="false" />
<preference name="stay-in-webview" value="false" />
<preference name="ios-statusbarstyle" value="black-opaque" />
<preference name="exit-on-suspend" value="false" />
<preference name="show-splash-screen-spinner" value="true" />
<preference name="auto-hide-splash-screen" value="true" />
<!-- Android -->
<preference name="android-minSdkVersion" value="8" />
<!-- Icons -->
<icon src="icon57.png" width="57" height="57" />
<icon src="icon72.png" gap:platform="ios" width="72" height="72" />
<icon src="icon114.png" width="114" height="114" />
<icon src="icon54.png" gap:platform="android" gap:density="mdpi" />
<icon src="icon72.png" gap:platform="android" gap:density="hdpi" />
<icon src="icon114.png" gap:platform="android" gap:density="xhdpi" />
<!-- Splash Screens iOS -->
<gap:splash src="splash/ios/Default.png" width="320" height="480" />
<gap:splash src="splash/ios/Default_at_2x.png" width="640" height="960" />
<gap:splash src="splash/ios/Default_iphone5.png" width="640" height="1136" />
<gap:splash src="splash/ios/Default-Landscape.png" width="1024" height="768" />
<gap:splash src="splash/ios/Default-Portrait.png" width="768" height="1024" />
<!-- Splash Screens Android -->
<gap:splash src="splash/android/ldpi.png" gap:platform="android" gap:density="ldpi" />
<gap:splash src="splash/android/mdpi.png" gap:platform="android" gap:density="mdpi" />
<gap:splash src="splash/android/hdpi.png" gap:platform="android" gap:density="hdpi" />
<gap:splash src="splash/android/xhdpi.png" gap:platform="android" gap:density="xhdpi" />
<!-- Permissions -->
<preference name="permissions" value="none"/>
<feature name="http://api.phonegap.com/1.0/camera"/>
<feature name="http://api.phonegap.com/1.0/file"/>
<feature name="http://api.phonegap.com/1.0/geolocation"/>
<feature name="http://api.phonegap.com/1.0/media"/>
<feature name="http://api.phonegap.com/1.0/network"/>
<!-- Global Domain Access -->
<access origin="*" />
從我的角度來看,這似乎是直接關係到屏幕尺寸/平板電腦的格式。但我不知道Google爲什麼不在大屏幕設備上列出應用程序。
您可以分享應用程序的Play商店鏈接或應用程序的名稱。 – 2013-02-18 14:02:07