加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
Blankj 提交于 2018-03-21 01:03 . see 03/21 log
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath "tech.harmonysoft:traute-gradle:1.1.8"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
apply plugin: "tech.harmonysoft.oss.traute"
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
// Sdk and tools
compile_sdk_version = 26
build_tools_version = '26.0.0'
min_sdk_version = 14
target_sdk_version = 26
version_code = 1_013_005
version_name = '1.13.5'// E.g 1.9.72 => 1,009,072
// App dependencies
support_version = '26.1.0'
leakcanary_version = '1.5.4'
junit_version = '4.12'
robolectric_version = '3.1.2'
trauteVersion = '1.1.8'
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化