The preferred way is to set android:targetSdkVersion="4", in which case the
defaults will all be true for supports-screens so you only have to set that
if you want to explicitly not support something.

And you can set android:minSdkVersion="3" or whatever to allow the app to
still run on older versions of the platform.

On Sun, Nov 29, 2009 at 10:25 PM, jeffro <j...@trackaroo.com> wrote:

> You'll need to specify which screen sized you support in your manifest
> file if you use SDK1.6.
>
> <supports-screens
>          android:largeScreens="true"
>          android:normalScreens="true"
>          android:smallScreens="true"
>          android:anyDensity="true" />
>
> Read more here: http://d.android.com/guide/practices/screens_support.html
>
> Jeff
> http://www.trackaroo.com
>
> On Nov 29, 2:48 am, Donald_W <wojcik.to...@gmail.com> wrote:
> > Hello, I would like to ask what settings are necessary for my
> > application to be available on all screen sizes:
> > Is it enough to compile it using SDK 1.6 (but target is set to 1.5 and
> > API level to 3) or maybe I have to set target to 1.6 and API level to
> > 4?
>
> --
> 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<android-developers%2bunsubscr...@googlegroups.com>
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>



-- 
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see and
answer them.

-- 
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