Gradle customization for Crashlytics

Hi,

To be able to compile crashlytics for android I need some extensions to the build.gradle files.

In the main folder:

  buildscript {
    repositories {
+     maven { url 'https://maven.fabric.io/public' }
      jcenter()
      mavenCentral()
    }

And in the app folder

 apply plugin: 'com.android.application'
+apply plugin: 'io.fabric'
+
+repositories {
+  maven { url 'https://maven.fabric.io/public' }
+}

@bolav, any luck with this?