加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1012 Bytes
一键复制 编辑 原始数据 按行查看 历史
weiqing.twq 提交于 2022-06-22 10:12 . fix:kotlin complie error
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.4.31"
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
project.ext.meta = [:]
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
rootProject.extensions.sdks = [
'Gradle' : '3.0.1',
'CompileSDK' : 28,
'BuildTool' : '28.0.3',
'MinSDK' : 18,
'TargetSDK' : 28,
'JUnit' : '4.12',
'Support' : '26.0.2',
'ABIs' : ["armeabi-v7a","arm64-v8a"],
'EXCLUDE_CPP_SHARED' : false
]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化