we have a problem related to the manifest file and the property \"android:minSdkVersion\". The issue is: If our platform is 2.0 and we use the property \"android:minSdkVersio
If you specify targetSdkVersion as well as minSdkVersion your application will start to work correctly on all platforms.
targetSdkVersion
minSdkVersion
So have an entry in your manifest like this:
This is covered in the Android API Levels page in the Android Developer documentation.