I'm building an application, and need to support both 1.5 (Magic and Hero) and 1.6 (Tattoo) devices. As Android SDK is forward compatible, it seemed logical to build against Android 1.5 SDK, and expect application to work on Tattoo. While that's true, (I tested app, it works ok), I'm now having problems on Android Market.
On Tattoo, Market search by default filters android apps that doesn't have explicit support for small screens defined in AndroidManifest.
Problem is that attribute exists only on Android 1.6 SDK, so Building against Android 1.5 SDK is no an option anymore.
How safe is to build App agains A1.6 (with minSdkVersion="3") and run it on 1.5 devices? Is there anything else I should take care of except just change target SDK?
Thanx