加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 759 Bytes
一键复制 编辑 原始数据 按行查看 历史
luo_xuekun 提交于 2018-07-03 10:31 . 最终版实现
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.leon.channel:plugin:1.1.7'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://raw.githubusercontent.com/Pgyer/mvn_repo_pgyer/master" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
versionCode = 19
versionName = '1.2.0'
libMinSdkVersion = 19
appMinSdkVersion = 19
targetSdkVersion = 27
compileSdkVersion = 27
buildToolsVersion = '27.0.3'
supportVersion = '27.1.1'
constraint = '1.1.0'
appSourceCompatibility = 1.8
appTargetCompatibility = 1.8
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化