// Top-level build file where you can add configuration options common to all sub-projects/modules. apply from:'version.gradle' buildscript { repositories { jcenter() google() maven { url "http://10.0.18.175/nexus/content/groups/and-rep/" } } dependencies { classpath 'com.android.tools.build:gradle:3.1.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() google() maven { url "http://10.0.18.175/nexus/content/groups/and-rep/" } } tasks.whenTaskAdded { task -> if (task.name.contains("AndroidTest")) { task.enabled = false } if (task.name == "lint") { task.enabled = false } } } task clean(type: Delete) { delete rootProject.buildDir }