android - increasing minimum sdk cause crash -


hi guys have application , had minimum sdk 15, expected increasing minimum sdk, when value-21 error in intermediate files, if increase compile sdk 23 25 , build tools 23 25; also, support libraries 25, application run in android studio. although running on android studio emulator, if try running app on phones, crash after welcome activity.

apply plugin: 'com.android.application' apply plugin: 'android-apt'  android { compilesdkversion 25 buildtoolsversion '25.0.0' defaultconfig {     applicationid "xxx.xxxxx.xxx"     minsdkversion 17     targetsdkversion 21     versioncode 2     versionname "2.0" } buildtypes {     release {         minifyenabled false         proguardfiles getdefaultproguardfile('proguard-android.txt'),   'proguard-rules.pro'     } } productflavors { } } dependencies { compile filetree(include: ['*.jar'], dir: 'libs') testcompile 'junit:junit:4.12' apt 'com.jakewharton:butterknife-compiler:8.4.0' compile 'io.reactivex:rxjava:1.1.8' compile 'io.reactivex:rxandroid:1.2.1' compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4' compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4' compile 'com.squareup.retrofit2:adapter-rxjava:2.0.0-beta4' compile 'com.github.victoralbertos.rxcache:core:1.4.6' compile 'com.jakewharton:butterknife:8.4.0' compile 'uk.co.chrisjenx:calligraphy:2.2.0' compile 'com.github.bumptech.glide:glide:3.7.0' compile 'me.wangyuwei:particleview:1.0.4' compile 'cn.bingoogolapple:bga-banner:2.0.9@aar' compile 'com.nineoldandroids:library:2.4.0' compile 'com.liulishuo.filedownloader:library:1.1.0' compile 'com.mcxiaoke.volley:library:1.0.18' compile 'com.google.code.gson:gson:2.6.2' compile 'com.squareup.picasso:picasso:2.5.2' compile 'fm.jiecao:jiecaovideoplayer:5.8.1' compile 'com.dynamitechetan.flowinggradient:flowinggradient:1.1' compile 'de.hdodenhof:circleimageview:1.3.0' compile project(':lcrapiddeveloplibrary') compile project(':recyclerview_irandesign') compile 'com.android.support:appcompat-v7:25.+' compile 'com.android.support:support-v4:25.+' compile 'com.android.support:design:25.+' compile 'com.android.support:cardview-v7:25.0.1' } 

if other information needed, ask me provide them. thank time


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -