找不到:com.android.support:support-v4:22.2.0

时间:2015-06-27 12:47:43

标签: android android-support-library build.gradle

我正在尝试做一个应用程序,但现在gradle文件似乎有些错误。在升级支持库之前,它工作正常。 我正在使用api 21工作正常,但随后我升级到api22并相应更改了gradle文件..现在出现此错误。

 Error:Failed to find: com.android.support:support-v4:22.2.0

这是我目前的gradle文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
    applicationId "com.example.sampleapp"
    minSdkVersion 12
    targetSdkVersion 22
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:recyclerview-v7:22.2.0'
compile 'com.jakewharton:butterknife:6.1.0'
}

任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:1)

如果这可能对某人有所帮助,经过多次尝试和错误后,我发现我在与#34; library"对应的build.gradle文件中定位了错误的SDK版本(旧版本)。要更改此设置,您可以手动执行或转到模块设置菜单(右键单击项目文件夹 - >打开模块设置。然后在"库" - 属性中,您可以更改编译Sdk和构建工具版本

enter image description here

答案 1 :(得分:0)

使用Android SDK Manager。转到Extras然后Android Support Repository并将其更新为最新版本。

(这基本上是@natario发表的评论,但它应该是一个答案。)