android-audio-recorder/build.gradle
Alexey Kuznetsov 1abaad1544 new filechoicer
2017-11-23 13:00:05 +03:00

27 lines
480 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.0.1'
}
}
allprojects {
repositories {
jcenter()
mavenLocal()
google()
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.2.1'
}
task clean(type: Delete) {
delete rootProject.buildDir
}