Newer
Older
DummyAnd / build.gradle
@Benoit Donneaux Benoit Donneaux on 15 Mar 2018 810 bytes Update build and support tools to match Dappre
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
    	// For the Gradle plugin and its deps
        maven { url "https://maven.google.com" }
        jcenter()
    }
    dependencies {
        // https://jcenter.bintray.com/com/android/tools/build/gradle
        classpath 'com.android.tools.build:gradle:3.0.1'
    }
}

allprojects {
    repositories {
        jcenter()
        // For the support libraries
        maven { url "https://maven.google.com" }
    }
}

//This block encapsulates custom properties and makes them available to all
//modules in the project.
ext {
  compileSdkVersion = 27
  buildToolsVersion = "27.0.3"
  supportLibVersion = "27.0.2"
}

task clean(type: Delete) {
    delete rootProject.buildDir
}