Newer
Older
DummyAnd / build.gradle
@Benoit Donneaux Benoit Donneaux on 12 Dec 2019 918 bytes [DP-590] Match Dappre project
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    ext {
        // Sdk and tools
        compileSdkVersion = 28
        minSdkVersion = 16
        targetSdkVersion = 28

        // App dependencies
        buildToolsVersion = "28.0.3"
        supportLibVersion = "28.0.0"
        junitVersion = '4.12'
        gradleVersion = '3.2.0'
    }

    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:$gradleVersion"
    }
}

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

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