Android Market称app与SG2不兼容

时间:2011-09-30 11:12:23

标签: android compatibility android-2.3-gingerbread

关于Apps的兼容性,Samsungs SG2(2.3.4)是否存在任何已知问题。我们的应用程序的许多潜在用户使用SG2报告Android Webstore认为该应用程序不兼容,并且该应用程序在Android Market App上不可见。而如果他们从Android Pit下载应用程序,则相同的用户可以毫无问题地安装和使用该应用程序。

编辑:我没有设置最大的SDK版本。最低SDK版本是7.根据开发人员控制台,已经有一些用户使用SGS2。

Edit2:以下是清单的一些部分:

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="my.app.full" android:installLocation="auto"
    android:versionName="1.1" android:versionCode="1">
    <uses-sdk android:minSdkVersion="7" />


    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <application android:icon="@drawable/icon" android:label="@string/app_name"
        android:name="myAppPlaceholderName">
        <!-- Activities left out -->


        <receiver android:name="my.app.OnebyOneWidgetProvider">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            </intent-filter>
            <meta-data android:name="android.appwidget.provider"
                android:resource="@xml/one_by_one_widget_info" />
        </receiver>
        <supports-screens android:anyDensity="true"
            android:largeScreens="true" android:smallScreens="true"
            android:normalScreens="true"  android:xlargeScreens="false"  android:resizeable="true" />
    </application>
</manifest>

我也在使用androidmarket的弃用版本保护。

0 个答案:

没有答案