JoyStick/build.gradle

25 lines
531 B
Groovy
Raw Normal View History

2015-10-31 04:13:41 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
2017-11-27 01:12:23 +00:00
google()
2015-10-31 04:13:41 +00:00
jcenter()
}
dependencies {
2017-11-27 01:12:23 +00:00
classpath 'com.android.tools.build:gradle:3.0.1'
2015-10-31 04:13:41 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2017-11-27 01:12:23 +00:00
google()
2015-10-31 04:13:41 +00:00
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
2016-10-29 17:44:18 +00:00
}