我想通过Phonegap为智能手机和平板电脑发布应用程序,但我的测试应用程序并没有出现在Play商店中的平板电脑上。它只出现在智能手机上,而且设备兼容性列表中显示的平板电脑设备旁边有绿色的复选标记。
的信息:
清单文件:
<manifest android:hardwareAccelerated="true" android:versionCode="7" android:versionName="1.0.6" android:windowSoftInputMode="adjustPan" package="my.testing.app12345" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<application android:debuggable="false" android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:name="ResolutionTester" android:theme="@android:style/Theme.Black.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="11" android:targetSdkVersion="19" />
</manifest>
答案 0 :(得分:0)
我发现我的应用程序在Play商店中可以找到,即使是平板电脑也是如此。通过创建7&#34;来改善我的应用程序的消息平板电脑用户的布局仍然存在,但可以通过游戏商店安装平板电脑而不会出现问题。奇怪...