我开发了一个基于 webview 的 android 应用程序,测试它 - 运行良好,上传到 Google Play,当我去查看应用程序时,我得到这个应用程序与你的所有设备不兼容 - 我有野火,现在我有 Media Pad 7 英寸药片。这是我的清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.compensatemeonline.uscompaniesdb"
android:versionCode="4"
android:versionName="1.3" >
<supports-screens>
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"
</supports-screens>
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.compensatemeonline.uscompaniesdb.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
这是我的应用程序... https://play.google.com/store/apps/details?id=com.compensatemeonline.uscompaniesdb&hl=en