Files
lzwcai-terminal-worktool/build.gradle
尹甲仑 89752ae328 update 消息at多人;发送任意文件;修改群备注;优化交互提醒
update ws断开重连时间优化;未登录提示;返回增加关闭关键词
2022-10-13 17:03:01 +08:00

32 lines
950 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.3.72"
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
maven { url 'https://repo1.maven.org/maven2/' }
maven { url 'https://jitpack.io' }
}
dependencies {
classpath "com.android.tools.build:gradle:4.0.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
maven { url 'https://repo1.maven.org/maven2/' }
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}