0

我开发了一个基于 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 在此处输入图像描述

4

1 回答 1

1

似乎问题实际上在于,在我的国家塞尔维亚,付费应用只能通过使用一些安装了新版 Google Play 应用的手机来购买。这似乎是问题所在,因为允许使用相同类型手机的其他国外用户使用该应用程序。

于 2013-10-18T07:30:18.157 回答