2019-07-10 19:46:10 +08:00
|
|
|
apply {
|
|
|
|
|
plugin "readme-sub"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
readme {
|
|
|
|
|
readmeFile file('./README.md')
|
|
|
|
|
readmeCnFile file('./README-CN.md')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2021-12-06 00:00:20 +08:00
|
|
|
compileOnly Config.libs.androidx_appcompat.path
|
|
|
|
|
compileOnly Config.libs.androidx_material.path
|
|
|
|
|
compileOnly Config.modules.lib_utilcode.dep
|
|
|
|
|
api(Config.libs.glide.path) {
|
2019-07-10 19:46:10 +08:00
|
|
|
exclude group: "com.android.support"
|
|
|
|
|
}
|
2021-12-06 00:00:20 +08:00
|
|
|
api Config.libs.retrofit.path
|
|
|
|
|
api Config.libs.gson.path
|
2019-07-10 19:46:10 +08:00
|
|
|
|
2021-12-06 00:00:20 +08:00
|
|
|
testImplementation Config.modules.lib_utilcode.dep
|
|
|
|
|
testImplementation Config.libs.test_junit.path
|
|
|
|
|
testImplementation Config.libs.test_robolectric.path
|
2019-07-10 19:46:10 +08:00
|
|
|
}
|