Files
sensor-fusion-demo/build.gradle

25 lines
589 B
Groovy
Raw Permalink 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.
apply plugin: 'com.github.ben-manes.versions'
2016-02-28 18:30:08 +01:00
buildscript {
repositories {
jcenter()
maven { url 'http://repo1.maven.org/maven2' }
2016-02-28 18:30:08 +01:00
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
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
}