And maybe this is too obvious to point out, but I will point it out anyway: your <uses-sdk values work because there WERE no "small screens" on 1.5 phones. It is only with 1.6 and up that you have to worry about them.
On Jul 12, 12:28 pm, Olivier Goutet <[email protected]> wrote: > Hi, > > If you want to be compatible with android 1.5 but with the benefit of > the 1.6 multiple screen support you have to set in your manifest the > following field: > > <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/> > > The min SDK, the oldest version you want to be compatible with, is 1.5 > but the target version is 1.6 so you will get the multiple screen > support. > > Then configure eclipse to build with the 1.6 SDK and everything should > be ok. > > All the strategy for supporting legacy application is explained > here:http://developer.android.com/guide/practices/screens_support.html#str... > > Olivier > > On Jul 12, 8:15 am, aswani kumar tholeti <[email protected]> > wrote: > > > Hi folks > > > i new to android. for getting more number of downloads.i will make > > application in android 1.5 version > > > how can i support multiple screen resolution from android 1.5 version . > > > is there any problem develop application in android 1.5 and release in > > market > > > is it visible to higher version mobile market for downloading apk file > > > Please any suggestion > > > 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

