如题,我在做夜间模式的时候将v7版本改为25,也把app的build.gradle的一系列版本都改为了25,后面点击运行几秒androidstudio报错,后面改成23就行了
apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "23.0.0" defaultConfig { applicationId "lwp.testr11" minSdkVersion 18 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' // compile 'com.android.support:appcompat-v7:24.2.1' compile 'com.android.support:appcompat-v7:23.2.1' }