diff options
Diffstat (limited to 'build.gradle')
| -rw-r--r-- | build.gradle | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..93e9c85 --- /dev/null +++ b/build.gradle @@ -0,0 +1,27 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + repositories { + mavenCentral() + } + dependencies { + classpath 'com.android.tools.build:gradle:0.10.+' + // the latest version of the android-apt plugin + classpath 'com.neenbedankt.gradle.plugins:android-apt:1.1' + //gradle-properties + // classpath 'net.saliman:gradle-properties-plugin:1.2.0' + } +} + +allprojects { + //apply plugin: 'properties' + + repositories { + mavenCentral() + } + //ant.properties : java.compilerargs=-Xlint + tasks.withType(JavaCompile) { + options.compilerArgs << "-Xlint" + } +} + |
