// Top-level build file where you can add configuration options common to all sub-projects/modules. apply plugin: 'com.github.ben-manes.versions' buildscript { ext { androidPluginVersion = '3.1.3' kotlinVersion = '1.2.41' supportLibraryVersion = '28.0.0-alpha3' takisoftFixVersion = '27.1.1.1' } repositories { google() jcenter() maven { url 'https://maven.fabric.io/public' } } dependencies { classpath "com.android.tools.build:gradle:$androidPluginVersion" classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0' classpath 'com.google.gms:google-services:4.0.1' classpath 'io.fabric.tools:gradle:1.25.4' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" } } allprojects { repositories { google() jcenter() maven { url 'https://jitpack.io' } } } task clean(type: Delete) { delete rootProject.buildDir }