1 Star 0 Fork 28

jingdongqioss/BaseDemo

forked from zhouhuandev/BaseDemo 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
module.build.gradle 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
zhouhuandev 提交于 2022-05-21 17:25 . [chron]: 重构依赖架构
if (isModule.toBoolean()) {
apply plugin: 'com.android.application'
} else {
apply plugin: 'com.android.library'
}
apply from: "../base.build.gradle"
android {
// 每个单独的 module库build可进行单独自定义配置相关文件信息
sourceSets {
main {
jniLibs.srcDirs = ['libs']
if (isModule.toBoolean()) {
manifest.srcFile 'src/main/module/AndroidManifest.xml'
} else {
manifest.srcFile 'src/main/AndroidManifest.xml'
java {
exclude 'debug/**'
}
}
}
}
}
dependencies {
api project(":lib_base_module")
def Depends = [
apis : rootProject.ext.moduleBuildDepends.api,
implementations : rootProject.ext.moduleBuildDepends.implementations,
kapt : rootProject.ext.moduleBuildDepends.kapt,
compileOnly : rootProject.ext.moduleBuildDepends.compile,
testImplementations: rootProject.ext.moduleBuildDepends.testImpl,
]
Depends.apis.each { api it }
Depends.implementations.each { implementation it }
Depends.kapt.each { kapt it }
Depends.compileOnly.each { compileOnly it }
Depends.testImplementations.each { testImplementation it }
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Android
1
https://gitee.com/jdq/BaseDemo.git
git@gitee.com:jdq/BaseDemo.git
jdq
BaseDemo
BaseDemo
master

搜索帮助