jcrowson
jcrowson

Reputation: 4290

Supporting Android 4.0

I've had a few emails about my app not being supported on Android 4.0 devices (The market states that this app is not supported) and users are not able to download it.

What are the steps involved to ensure an app is compatible in Android 4.0? My manifest file states that the minimum SDK version is set to 8.

Upvotes: 2

Views: 236

Answers (2)

Ghost
Ghost

Reputation: 3966

In addition to adding

<uses-sdk android:minSdkVersion="8" 
          android:targetSdkVersion="14" />

In your manifest, you'll also have to change the android:versionCode="1" android:versionName="1.0" in your manifest.
I hope you have made changes in the design of your app and made it compatible with ICS. You might also want to include the android:xlargeScreens="true" android:anyDensity="true" in the <supports-screen> tag of the manifest, if you haven't already done that.

Upvotes: 1

Rajdeep Dua
Rajdeep Dua

Reputation: 11230

Define targetSdkVersion as 14 and minSdkVersion as 8.

Upvotes: 0

Related Questions