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
Post a Comment