I have used my main.xml and the layout manager to test if my app fit on all available sizes via the pulldown menu (except 2.7) in the layout manager.
I have not run emulators with all these sizes but is that necessary seeing they fit in the layout manager?
Also reffering to the supported screen sizes here http://developer.android.com/guide/practices/screens_support.html it seems from 1.6 on they are all set to true by default.So is this the correct syntax I should put in the manifest.xml?
<manifest "STUFF">
<supports-screens android:smallScreens=["false"]
android:normalScreens=["true"]
android:largeScreens=["true"]
android:anyDensity=["true"] />
</manifest>
Just want to be sure I am targeting all available devices here.Am I missing anything before I launch this first app?
I think it’s just
I would run your app in the emulator with the different screen sizes personally.