aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle27
1 files changed, 27 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..e55d892
--- /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.11.+'
+ // 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"
+ }
+}
+