• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

How make the Android app that works with all Android Versions?

nikoo56

Lurker
How make Android app works with all Android versions?

I have created an Android app and signed and packaged it. That is version of Android that I have used in AndroidManifest:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fa.test.NM"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="17" />

When I install the app on the latest Android it is working because the version matches the manifest. But when I try to install with older version of android it gave me an error:
 
How make Android app works with all Android versions?

I have created an Android app and signed and packaged it. That is version of Android that I have used in AndroidManifest:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fa.test.NM"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="17" />

When I install the app on the latest Android it is working because the version matches the manifest. But when I try to install with older version of android it gave me an error:
 
Back
Top Bottom