I want to set in project properties build target 2.2 (api level 8)
In the manifest.xml <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/> is declared.
Did anybody tried, if any user (with min. Android 1.5) see application in the market?
Could some other problems occur because of different SDK for building and in manifest?!
Thank you,
Mur
P.s.
You would probably ask, why do I want to do that thing.
Just wanted that users of Android 2.2. could move app to SD card and and have read this tutorial http://mobile.tutsplus.com/tutorials/android/move-to-sd-card/
So long as you set your
minSdkVersionto Android 1.5, you should be fine. Just make sure you don’t make any newer API calls for people running older versions of Android. You can check a user’s build version with Build.VERSION. If you’re only adding the Froyo move to SD card feature, you shouldn’t have any problems.