0

三星 SG2 (2.3.4) 是否存在有关应用程序兼容性的任何已知问题。许多使用 SG2 的应用程序的潜在用户报告 Android Webstore 认为该应用程序不兼容,并且该应用程序在 Android Market 应用程序中不可见。而相同的用户如果从 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 已弃用的复制保护。

4

0 回答 0