错误:
无法解决:com.android.support:appcompat-v7:22.0.0:
如何解决此错误?
配置:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.ummat.qmduain"
minSdkVersion 11
targetSdkVersion 23
versionCode 1
versionName '1.0'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile files('libs/hvjavacal.jar')
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.google.android.gms:play-services:7.8.0'
compile 'com.google.android.gms:play-services-ads:7.8.0'
compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2'
}
截图:
答案 0 :(得分:-1)
您正在尝试编译版本22,但您的编译SDK版本为23。
解决方案:
'com.android.support:appcompat-v7:23.4.0'
答案 1 :(得分:-2)
您的编译sdkVersion
和支持库版本不匹配。您应该在23中使用23.0.0
或更新版本。
另一方面,您使用的是非常古老的库版本。除非你有其他要求,否则我建议最高可达27。