Hi everyone. I do have an app that should only be visible in the market for android 1.5 and 1.6 devices. So i thought i compile for sdk version 3 and set
<uses-sdk minSdkVersion="3" maxSdkVersion="4" />
But it seems not to be so easy. I get an error saying
error: No resource identifier found for attribute 'maxSdkVersion' in package 'android'
How am i supposed to achieve that my app is only visible for sdk version 3 and 4 devices? Just to clarify: i have a second version of the app in the market for all devices with android >2.0 because it makes use of the AccountManager. The new version doesnt make use of it since it's not supported in 1.5 and 1.6.
Gr33ts Goddchen