我正在尝试使用android支持库创建一个应用程序,所以如果我开始一个带有基本活动的新项目,然后使用依赖项菜单添加android支持库,我收到此错误:
This support library should not use a different version (24) than the `compileSdkVersion` (23)
这就是我的gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "com.example.moore.criminalintent"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:support-v4:24.0.0'
}
除了创建项目和添加依赖项之外,我没有触及任何其他设置。任何帮助解决这个问题都将非常感激。
答案 0 :(得分:3)
由于您使用的是支持库v24 。
compile 'com.android.support:support-v4:24.0.0'
您必须使用 API 24 进行编译。使用:
compileSdkVersion 24
答案 1 :(得分:0)
将compile 'com.android.support:support-v4:24.0.0'
更改为compile 'com.android.support:support-v4:23+'
(并可选择提供子版本。加号表示将使用23.something的最新版本)。
导致此错误是因为您正在针对API版本23(android M)进行编译,因此您无法使用支持库版本24.根据我的理解,支持库的版本24适用于最近发布的Android N开发人员预览版。
或者,您可以粗略地将编译SDK版本增加到24。
答案 2 :(得分:0)
如果使用编译SDK版本24,则应将其用作
编译'com.android.support:support-v4:24.0.0'