I want to write an app using Android SDK and Eclipse.
I installed Android 4 Platform using the SDK Manager, but I’m wondering, will this app work with Android 2 Devices? or only Android 4 Devices?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In your App Manifest XML file you must specify the Minimum and Desired Target SDK version.
I am developing a App that Target Android 4.0.3 (SDK v15) but must run on 2.3.3 (SDK v10).
Off course you have to use only the lower SDK available functions.
You should also look the Google Support Library thats make available some new functions for older SDK.
http://developer.android.com/tools/extras/support-library.html
// Marcello