pda/build.gradle

47 lines
1.3 KiB
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()
2019-02-01 09:19:44 +08:00
google()
// maven {
// name 'Sonatype SNAPSHOTs'
// url 'https://oss.sonatype.org/content/repositories/snapshots/'
// }
2016-12-20 22:07:00 +08:00
}
dependencies {
2019-02-01 09:19:44 +08:00
classpath 'com.android.tools.build:gradle:3.3.0'
//classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0'
classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0'
// classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
2016-12-20 22:07:00 +08:00
}
}
allprojects {
2019-02-01 09:19:44 +08:00
// gradle.projectsEvaluated {
// tasks.withType(JavaCompile) {
// options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
2019-02-01 09:19:44 +08:00
// }
// }
2016-12-20 22:07:00 +08:00
repositories {
jcenter()
2019-02-01 09:19:44 +08:00
google()
maven {
2019-02-15 23:48:25 +08:00
url "https://raw.githubusercontent.com/umeng/mvn-repo-umeng/master/repository"
}
// maven { url 'https://jitpack.io' }
2019-02-01 09:19:44 +08:00
// maven {
// name 'Sonatype SNAPSHOTs'
// url 'https://oss.sonatype.org/content/repositories/snapshots/'
// }
2019-02-15 23:48:25 +08:00
2016-12-20 22:07:00 +08:00
}
}
2019-02-01 09:19:44 +08:00
task clean(type: Delete) {
delete rootProject.buildDir
}
2016-12-20 22:07:00 +08:00
//tasks.withType(JavaCompile) {
// options.encoding = "GBK"
//}