adding to build.gradle

I need to add the following to the Modules gradle file:

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.facebook.android:facebook-android-sdk:[4,5)'
}

How can I do that?

Try something like the following attributes:

[Require("Gradle.Dependencies.Compile","com.facebook.android:facebook-android-sdk:[4,5)")]
[Require("Gradle.Repository","mavenCentral()")]

Remember that our Gradle support is still experimental so there may be changes to how this is done.

Great. Really impressed that you guys had all the functionality I needed in place.

Is there a way to build with gradle without going through Android Studio?