android-audio-recorder/build.gradle
Alexey Kuznetsov a911c16090 update libs
2018-12-02 11:21:14 +03:00

27 lines
511 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.1'
}
}
allprojects {
repositories {
jcenter()
mavenLocal()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
def prop(String name) {
project.hasProperty(name) ? project.getProperty(name) : null
}