我使用PhoneGap Build构建了一个应用程序并将其成功提交到Google Play。成功意味着它可以在我的Nexus S和其他运行Android的Android智能手机上使用Google Play(使用Android 2.2及更高版本)。
但该应用程序在我试用的任何Android平板电脑设备上都没有出现在Google Play中(华硕/谷歌Nexus 7与Android 4.2.1和三星平板电脑与Android 4.0.1)。
如果我要从Hockey App下载.apk,该应用程序将按预期安装并运行。
我的PhoneGap Build 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="*" />
从我的角度来看,它似乎与屏幕尺寸/平板电脑格式直接相关。但我不知道谷歌为什么不在大屏幕设备上列出应用程序。
答案 0 :(得分:2)
目前似乎无法通过PhoneGap Build运行它,因为没有专门支持AndroidManifest.xml的某些选项。
所以我决定用Eclipse构建应用程序的默认方式(参见http://docs.phonegap.com/en/2.4.0/guide_getting-started_android_index.md.html#Getting%20Started%20with%20Android)。
添加
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true"
android:resizeable="true"
android:anyDensity="true"
/>
我能够增加支持的devies数量。但我还必须添加
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
支持我提到的平板电脑。
而不是1.836支持的设备,现在已经列出了2.341。
答案 1 :(得分:1)
如果您登录Play商店,则可以转到APK并查看是否排除了任何设备。您还可以单击版本代码下的“显示详细信息”以查看所有属性。
我的猜测与“屏幕布局”或支持的dpi值有关是问题,你需要适当修改清单。