buildscript { repositories { jcenter() mavenCentral() maven { url "https://plugins.gradle.org/m2/" } maven { url 'https://maven.google.com' } google() } dependencies { classpath 'com.android.tools.build:gradle:3.0.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1" classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1' } } project.ext.preDexLibs = !project.hasProperty("disablePreDex") subprojects { project.plugins.whenPluginAdded { plugin -> if ("com.android.build.gradle.AppPlugin" == plugin.class.name) { project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs } else if ("com.android.build.gradle.LibraryPlugin" == plugin.class.name) { project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs } } } ext { GROUP_ID = "io.github.wulkanowy" } allprojects { repositories { jcenter() mavenCentral() maven { url 'https://maven.google.com' } maven { url "https://jitpack.io" } google() } } task clean(type: Delete) { delete rootProject.buildDir }