Should I use the latest 4.0 or 2.3? My phone has android 2.3.5 and it’s a HTC Desire HD.
Does the runtime matter or will the applications work still?
Should I use the latest 4.0 or 2.3? My phone has android 2.3.5 and
Share
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.
First you should choose what device versions you’d like to target: http://developer.android.com/resources/dashboard/platform-versions.html
Based on those numbers it makes sense to currently support Android 2.1 and higher.
Also you should read about
<uses-sdk>directive:android:minSdkVersionandmaxSdkVersiondefine the version range to which your app will be available. If device has Android version out of this range then app will not be visible for it.targetSdkVersionis the vesrion that you are targeting and that you actually tested against. This attribute triggers Android’s compatibility behavior: for instance targeting 2.3 will not show the new look on 4.0 devices.