The target SDK version is not supported prior to API level 3 (Android
1.5). Also Android 1.5 only supports one screen size and resolution.

In order to best support Android 1.5 and above (including large
screens) you should compile one version with:

<uses-sdk android:minSdkVersion="3" />

for Android 1.5 and one version with

<uses-sdk android:minSdkVersion="4" targetSdkVersion="8" />

for Android 1.6 and above.
Just make sure you only use API level 3 and below code and you'll only
have to change the info in the manifest and project properties.


On Jul 19, 3:12 pm, aswani kumar tholeti <[email protected]>
wrote:
> Hi folks
>
> i want to develop application that should support all version (latest and
> old ) and it should adjust screen resolution(large,medium)
>
> i read document.there i found legacy application if i develop application in
> 1.6
>
> there i am giving
>
> <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>
>
> is it good way to develop application and is it support 1.5 and 1.5+
>
> user able find my application there market.please share your any ideas to
> me
>
> Thanks in advance
>
> Aswan

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to