我正在尝试做一个应用程序,但现在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'
}
任何帮助将不胜感激。