我最近将mindSdkVersion改为17,将targetSdkVersion改为21,并且出现了很多错误。我修了一些,但我无法解决这个问题:
Error:(28, 13) Failed to resolve: com.android.support:appcompat-v7:21.0.1
我在Mac上使用Android Studio,我有Android支持存储库。
我的build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "24.0.3"
defaultConfig {
applicationId "com.swit.sedamaker"
minSdkVersion 17
targetSdkVersion 21
versionCode 2
versionName "1.01"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile 'com.android.support:appcompat-v7:21.0.1'
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:1)
发生错误是因为支持库的21.0.1不存在。
dependencies{
//it requires compileSdkVersion 21
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:appcompat-v7:21.0.2'
compile 'com.android.support:appcompat-v7:21.0.0'
}
答案 1 :(得分:0)
尝试替换为:
compile 'com.android.support:appcompat-v7:23.3.0'
答案 2 :(得分:0)
您最好匹配compileSdkVersion
,buildToolsVersion
,targetSdkVersion
的API版本。尝试使用最新的SDK
apply plugin:'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
defaultConfig {
...
minSdkVersion 17
targetSdkVersion 24
...
}
...
}
dependencies {
compile 'com.android.support:appcompat-v7:24.2.0'
...
}
当然,如果需要,您可以将targetSdkVersion设置为21。 targetSdkVersion用于通知系统您已针对目标版本测试应用程序,如documentation所述。
android:targetSdkVersion
指定API级别的整数 申请目标。如果未设置,则默认值等于给定的值 到minSdkVersion。此属性通知系统您拥有 针对目标版本进行测试,系统不应启用任何版本 兼容性行为,以维护您的应用程序的向前兼容性 与目标版本。该应用程序仍然能够运行旧版本 版本(低至minSdkVersion)。
在compileSdkVersion
和targetSdkVersion
以What is the difference between compileSdkVersion and targetSdkVersion?了解详情。