1 Star 0 Fork 0

agiknight/Jetpack-MVVM-Best-Practice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 989 Bytes
一键复制 编辑 原始数据 按行查看 历史
KunMinX 提交于 2020-11-28 02:45 . gradle build tool comment
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
//默认使用 jcenter,以便在依赖库有紧急更新时能第一时间获取
//如对日常的拉取速度有追求,可考虑使用以下远程仓库(是对 jcenter 的国内同步仓库,存在 1 天左右的时差)
//maven { url "https://maven.aliyun.com/repository/public" }
}
dependencies {
//考虑到 Android Studio 4.1 存在各种问题,目前暂且将 gradle tool 版本停留在 4.0.2,以兼容 Android Studio 4.0
classpath 'com.android.tools.build:gradle:4.0.2'
}
}
allprojects {
repositories {
google()
jcenter()
//maven { url "https://maven.aliyun.com/repository/public" }
flatDir { dirs 'libs' }
}
}
task clean(type: Delete) {
rootProject.allprojects {
delete(it.buildDir)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sylar_game_dev/Jetpack-MVVM-Best-Practice.git
git@gitee.com:sylar_game_dev/Jetpack-MVVM-Best-Practice.git
sylar_game_dev
Jetpack-MVVM-Best-Practice
Jetpack-MVVM-Best-Practice
master

搜索帮助