Files
sensor-fusion-demo/build.gradle

22 lines
471 B
Groovy
Raw Normal View History

2016-02-28 18:30:08 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven { url 'http://repo1.maven.org/maven2' }
2016-02-28 18:30:08 +01:00
}
dependencies {
2016-09-12 12:35:25 -04:00
classpath 'com.android.tools.build:gradle:2.1.3'
2016-02-28 18:30:08 +01:00
}
}
allprojects {
repositories {
jcenter()
maven { url 'http://repo1.maven.org/maven2' }
2016-02-28 18:30:08 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}