pda/build.gradle

23 lines
533 B
Groovy
Raw Normal View History

2016-12-20 22:07:00 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
2016-12-20 22:07:00 +08:00
}
}
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
// options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
2016-12-20 22:07:00 +08:00
repositories {
jcenter()
}
}
//tasks.withType(JavaCompile) {
// options.encoding = "GBK"
//}