アプリの互換性に関するSamsungsSG2(2.3.4)に関する既知の問題はありますか。SG2を使用しているアプリの多くの潜在的なユーザーは、Androidウェブストアがアプリに互換性がないと考えており、アプリがAndroidマーケットアプリに表示されていないと報告しています。同じユーザーがAndroidPitからアプリをダウンロードすれば、問題なくアプリをインストールして使用できます。
編集: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の非推奨のコピー防止機能を使用しています。