Currently i’m developing an Android project on Android Platform 2.3.3, API Level 10. I want to build APK file to run my project on Android 2.0 Device. How can i do this ? can i run my current APK file on Android 2.0 Device ?
Currently i’m developing an Android project on Android Platform 2.3.3, API Level 10 .
Share
You would need to configure the android:minSdkVersion in the manifest, as explained in the documentation. This will mean that only the API methods and classes supported by the minimum SDK will be available to you.