App supporting os version

hi guys,
i am new in ionic 2.
i have made a ionic 2 app and build apk for testing.
the app working perfectly on android android 6.3 or newer
but on lower version of android 6.3 my app started with white screen and showing error.

how can i make app that run from android 4.4 to newest version of android

In your config.xml there is a preference:

<preference name="android-minSdkVersion" value="16" />

You can change the value of that preference, and you can check the SDK (number) versions here:

https://developer.android.com/studio/releases/platforms.html

thanks Pixid12… it works

1 Like