I have developed one application in Android version 2.3, and want to convert it into 1.5. Unfortunately I am experiencing some problem with that.
I have changed minSDK from 8 to 5 changed from property
But I still get the problem.
Any ideas?
|
|
If you have used any inbuild functions or methods or constants or attributes that was added after the release of android 1.5 and if you try to change to 1.5 now, you will not be able to do that. Make sure that you have not used such kind of methods or any other attributes that was not released in 1.5. |
|||||||||||||||||||
|
|
There are several aspects to converting an application's version number.
After re-reading the question I believe I've found the specific mistake: You say you've set the minSdkVersion to 5. API level 5 corresponds to Android version 2.0. You also say you want to convert your project to Android version 1.5, which leads me to believe that you've set your Project Build Target to the corresponding API level 3. If you change either of those to match the other, your original problem should be solved. |
||||
|
|
|
In order:
|
|||||||
|
|
Right click the project in eclipse, go to Properties, go to android, and set the build target to 1.5. |
|||||
|
|
To convert backward means that you have to write alternative code to replace method for api you used in the higher version SDK=8 that aren't supported in the old SDK=5, because in the old version those methods won't exist. It is better if you plan ahead witch minimum version to support. |
|||
|
|