android-audio-recorder/build.gradle
Alexey Kuznetsov e4fa50e9fd cleanups
2018-05-14 16:59:13 +03:00

27 lines
486 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0-alpha14'
}
}
allprojects {
repositories {
jcenter()
mavenLocal()
google()
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.6'
}
task clean(type: Delete) {
delete rootProject.buildDir
}