blob: f6afa47695dcf712227e416d916ee4fd122f46b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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.12.+'
// 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"
}
}
|