Importación de la biblioteca de Facebook en Android Studio: no se pudo encontrar la propiedad 'ANDROID_BUILD_SDK_VERSION'

Quiero importar un proyecto de biblioteca a mi aplicación, pero cuando intento hacerlo, Android Studio no lo reconoce.

También me da errores en build.gradle ..

La biblioteca es: PagerSlidingTabStrip ....

Aquí hay algunas fotos :

¡He estado tratando de hacer que funcione por 3 días hasta ahora! Por favor, ayúdame :)

EDITAR:

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

Respuestas a la pregunta(5)

Su respuesta a la pregunta