How do I set minimum android version to to kitkat
There's a drop down in the builder project app/setting but it won't allow me to specify kitkat. For my application Kit Kat is a big deal because this is when the Chrome based web view is used.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
There's a drop down in the builder project app/setting but it won't allow me to specify kitkat. For my application Kit Kat is a big deal because this is when the Chrome based web view is used.
To set android 4.4 version you can do following:
1 Open project sources.
2 Open file : ANDROID-projectName-AndroidManifest.xml
Details: http://prntscr.com/7mwfpg/direct
3 Edit following line:
Set android:minSdkVersion with 19 value(android 4.4+).
Details: http://prntscr.com/7mwh4g/direct
It such way you can set any other min sdk verstion.