Why can't I add a support library in Android Studio?

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.8.+'
    }
}

dependencies {
    compile 'com.android.support:appcompat-v7:19.0.+'
    compile 'com.android.support:support-v4:19.0.+'
    compile 'com.github.chrisbanes.actionbarpulltorefresh:library:+'
    compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
    compile project(':library:SlidingMenu:library')
    compile project(':library:Android-ViewPagerIndicator:library')
    compile fileTree(dir: 'libs', include: ['*.jar'])
}

apply plugin: 'android'

android {
    compileSdkVersion 19
    buildToolsVersion "19.0.1"

    defaultConfig {
        minSdkVersion 8
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

The event log

Failed to update Gradle project “My application” Could not find the compile () method for the arguments [com.android.support:appcompat-v7:19.0.+] in the project ': app'. Install Android Support Repository from the Android SDK Manager.

enter image description here

+3
source share

All Articles