1 Star 0 Fork 41

ljk761626336_05a073/AndroidUtilCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 968 Bytes
一键复制 编辑 原始数据 按行查看 历史
caimengjie 提交于 2021-12-06 00:00 . opt: Config
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ConfigUtils.init(gradle)
repositories {
mavenLocal()
google()
mavenCentral()
jcenter()
}
dependencies {
for (def entrySet : ConfigUtils.getApplyPlugins().entrySet()) {
classpath entrySet.value.path
}
}
}
allprojects {
repositories {
mavenLocal()
maven { url "https://jitpack.io" }
google()
mavenCentral()
jcenter()
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
resolutionStrategy.eachDependency {
if (it.requested.group == 'com.android.support' && !it.requested.name.contains(
'multidex')) {
it.useVersion Config.supportVersion
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/ljk_761626336/AndroidUtilCode.git
git@gitee.com:ljk_761626336/AndroidUtilCode.git
ljk_761626336
AndroidUtilCode
AndroidUtilCode
master

搜索帮助