That's easy. Change your compilation settings to android 1.6 (API 4)
Keep minSdk to 3 but set targetSdk to 4.
Then you can edit the support screen fields.
If you want to support large screens (Tablets) you need to do it with
API 8 (not sure tho).

On 23 juin, 06:45, Sudeep <sudeep.neti...@gmail.com> wrote:
> Thanks a lot Mark and Justin.
> The minsdkversion support in my application is API level 3
> So that puts it in older application category.
>
> Like Bond,I was unaware of the fact that default support for all
> screens is from API level 4.
> I can't change the API level 4 . I am aware of the fact that there
> aren't plenty of devices running android 1.5.
> But I still need to support them.
> So I have included the following in my manifest file.
>
>         <uses-sdk android:minSdkVersion="3" />
>         <supports-screens android:resizeable="true"
>                       android:smallScreens="true"
>                       android:normalScreens="true"
>                       android:largeScreens="true"
>                       android:anyDensity="true" />
>
> In code I have handled support for multiple screen sizes and also
> tested them.
>
> Just hoping that it works fine.

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

Reply via email to