My app is not available to below listed Devices
Samsung GT D-5330
Samsung GT 7262
android:minSdkVersion="8"
android:targetSdkVersion="19"
My app is not available to below listed Devices
Samsung GT D-5330
Samsung GT 7262
android:minSdkVersion="8"
android:targetSdkVersion="19"
Did u added
<!-- Donut-specific flags which allow us to run on any dpi screens. -->
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true" />
in your Manifest??
If you add all lines in the first answer, maybe you need to add:
<uses-feature android:name="android.hardware.faketouch" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
Some old devices need that to works.