1

My application have minSdkVersion="8" & targetSdkVersion="9".

Also added

 <uses-feature
        android:name="android.hardware.telephony"
        android:required="false" />
    <uses-feature
        android:name="android.hardware.location"
        android:required="false" />

in manifest file. And i did not use <support-screens> in my application's manifest. Because I think it is true by default.

While downloading this application from android market using Samsung Galaxy tab GT-P1000 (Android OS 2.2) it works fine, but when downloading using Penta Tab IS709C (Android OS 4.0.4) this shows 'App not compatible with this application' error.

What is the issue here. How can I make my application have support for all phones and tablets?

tshepang
  • 12,111
  • 21
  • 91
  • 136
Asha Soman
  • 1,846
  • 1
  • 18
  • 28

1 Answers1

1

Do not set maxSDKVersion, it is not a good practice.

just change your target SDK

 <uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />
T_V
  • 17,440
  • 6
  • 36
  • 48