1 Star 0 Fork 2

某某/andbase3x

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 999 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhaoqipeng 提交于 2021-03-15 22:42 . 最新版本提交
// Define versions in a single place
ext {
// SDK And Tools
minSdkVersion = 21
targetSdkVersion = 28
compileSdkVersion = 28
buildToolsVersion = '28.0.3'
//Dependencies
supportLibraryVersion = '28.0.0'
}
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://dl.google.com/dl/android/maven2' }
maven { url "https://jitpack.io" }
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':andbase_demo')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Android
1
https://gitee.com/cqws/andbase.git
git@gitee.com:cqws/andbase.git
cqws
andbase
andbase3x
master

搜索帮助