1 Star 1 Fork 1

s10g/kotlin_open_eye

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
global_config.gradle 3.38 KB
一键复制 编辑 原始数据 按行查看 历史
s10g 提交于 2021-09-25 13:48 +08:00 . GradualChangeTabLayout 100%
//Groovy 语言
// 扩展块
ext {
//是否是正式环境!
isRelease = true
//正式环境/测试环境域名
url = [
// "debug" : "http://168.163.1.1/debug",
// "release": "http://168.163.1.1/release",
"BaseUrl": "http://168.163.1.1/release",
]
//各个模块版本统一
androidId = [
compileSdkVersion : 30,
buildToolsVersion : "30.0.3",
minSdkVersion : 16,
targetSdkVersion : 30,
testInstrumentationRunner: "androidx.test.runner.AndroidJUnitRunner",
consumerProguardFiles : "consumer-rules.pro"
]
//存储各个模块的applicationId [包名]
appId = [
app : "com.example.open_eye",
find : "com.example.open_eye_find",
first_page: "com.example.open_eye_first_page",
hot : "com.example.open_eye_hot",
my : "com.example.open_eye_my",
]
//存储公共依赖
dependenciesID = [
//协程
"core_ktx" : 'androidx.core:core-ktx:1.2.0',
"appcompat" : 'androidx.appcompat:appcompat:1.1.0',
"material" : 'com.google.android.material:material:1.1.0',
"constraintlayout" : 'androidx.constraintlayout:constraintlayout:1.1.3',
//jetPack lifecycle
"lifecycle-runtime-ktx" : 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.0',
"lifecycle-common-java8" : 'androidx.lifecycle:lifecycle-common-java8:2.2.0',
"lifecycle-extensions" : 'androidx.lifecycle:lifecycle-extensions:2.2.0',
//jetPack viewModel
"lifecycle-viewmodel-ktx" : "androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0",
"fragment-ktx" : "androidx.fragment:fragment-ktx:1.3.1",
//liveData
"lifecycle-livedata-ktx" : "androidx.lifecycle:lifecycle-livedata-ktx:2.2.0",
//navigation
"navigation-fragment-ktx" : 'androidx.navigation:navigation-fragment-ktx:2.3.5',
"navigation-ui-ktx" : 'androidx.navigation:navigation-ui-ktx:2.3.5',
//retrofit2
"retrofit2" : "com.squareup.retrofit2:retrofit:2.9.0",
//OkHttp
"okhttp" : "com.squareup.okhttp3:okhttp:3.12.1",
//OkHttp 拦截器
"logging-interceptor" : "com.squareup.okhttp3:logging-interceptor:3.10.0",
//Glide
"glide" : 'com.github.bumptech.glide:glide:4.11.0',
//gson
"converter-gson" : "com.squareup.retrofit2:converter-gson:2.9.0",
//ARouter TODO 参考文档: https://codechina.csdn.net/mirrors/alibaba/arouter
"arouter-api" : 'com.alibaba:arouter-api:1.5.1',
//BaseQuickAdapter
// TODO 参考文档: https://blog.csdn.net/weixin_44819566/article/details/112789000
// TODO 官方文档: http://www.recyclerview.org/
"BaseRecyclerViewAdapterHelper": 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.30',
//RxBinDing
"rxbinding2" : 'com.jakewharton.rxbinding2:rxbinding:2.0.0',
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lanyangyangzzz/kotlin_open_eye.git
git@gitee.com:lanyangyangzzz/kotlin_open_eye.git
lanyangyangzzz
kotlin_open_eye
kotlin_open_eye
componentization

搜索帮助