Facebook-Bibliothek in Android Studio importieren: Die Eigenschaft 'ANDROID_BUILD_SDK_VERSION' konnte nicht gefunden werden

Ich möchte ein Bibliotheksprojekt in meine App importieren, aber wenn ich es versuche, erkennt Android Studio es nicht

Es gibt mir auch Fehler in build.gradle ..

Die Bibliothek ist: PagerSlidingTabStrip ....

Hier sind einige Bilder :

Ich habe versucht, es für 3 Tage zu arbeiten, bis jetzt !! Bitte hilf mir :)

BEARBEITEN:

apply plugin: 'android-library'

dependencies {
compile 'com.android.support:support-v4:19.0.0'
}

android {
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION

defaultConfig {
    minSdkVersion 8
    targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
}

sourceSets {
    main {
        manifest.srcFile 'AndroidManifest.xml'
        java.srcDirs = ['src']
        res.srcDirs = ['res']
    }
}
}

 apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle'

EDIT2:

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ':Sahertoday'.
> Could not resolve all dependencies for configuration ':Sahertoday:_debugCompile'.
> Could not find com.astuetz:pagerslidingtabstrip:1.0.1.
 Required by:
     Saher-3:Sahertoday:unspecified

* Try:
 Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get         more log output.

 BUILD FAILED

Antworten auf die Frage(5)

Ihre Antwort auf die Frage