Google Play此应用与您的所有设备不兼容

时间:2013-10-16 18:34:14

标签: android

我开发了基于webview的Android应用程序,经过测试 - 工作正常,上传到Google Play,当我去看应用程序时我得到这个应用程序与你的所有设备不兼容 - 我有野火,现在我有媒体垫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 enter image description here

1 个答案:

答案 0 :(得分:1)

事实上,问题在于我的国家/地区塞尔维亚,付费应用只能通过使用已安装新版Google Play应用的手机购买。这似乎是个问题,因为国外其他使用相同类型手机的用户都可以使用该应用程序。