android - Apps are not supported in lesser than v5.0(lollipop) -


in android studio, have create new project run on 2.2(that shows 100% compatibility). project calculation. have installed on phone(lollipop), , app working properly. but, tried install in friends kitkat phone, app installed but, when open app, shows unfortunately app has stopped. so, need help. have do?

thank you.

may set minimum sdk @ lollipop check out in build.gradle file.

android { compilesdkversion 24 buildtoolsversion "23.0.3"  defaultconfig {     applicationid "com.communitynow.communitynow"     minsdkversion 15     targetsdkversion 24     versioncode 1     versionname "1.0" } 

and add compile 'com.android.support:multidex:1.0.0' in gradle file

here in defaultconig{} minsdkversion should 15 or according minimum android run requirement.


Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -