I have been developing an android app. I had chosen 2.2 as the version. I have not used any advanced features that are specific to 2.2 or above. I want my app to work with 1.6 and above. What should I do?

Thanks.

link|improve this question

57% accept rate
Use minSDK 4 in manifest file – Rasel Aug 19 '11 at 14:11
So why don't you just change the SDK version to 4? – Egor Aug 19 '11 at 14:13
feedback

4 Answers

up vote 1 down vote accepted

Complement preview answers.

android make upward compatible your code automatically as much as possible (not always).
But lowering the api level of an app. Can be a task from simple to nightmare to execute, all depends if your code use a lot of specific 2.2 ... That's means changing API level or android.jar in your project may be far to be enough.

good luck

link|improve this answer
feedback

Open the AndroidManifest.xml file and change to :

<uses-sdk android:minSdkVersion="4"/>
link|improve this answer
feedback

At first you should set android:minSdkVersion="4" in the Android Manifest file.

Next step is to do some testing on an android vm with version 1.6. Even better would be to test on a real device, but the compiler should give you enough hints what to change in your program.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.