1 Star 0 Fork 0

zhangdcyf / utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.gradle 2.07 KB
一键复制 编辑 原始数据 按行查看 历史
zdd 提交于 2021-06-23 10:48 . +)修改log tag使用方式
def versionName = "v1.0.8"
def versionCode = 9
// dependencies
def appcompat = "1.1.0"
def recyclerview = "1.0.0"
def constraintLayout = "1.1.3"
def junit = "4.12"
def runner = "1.2.0"
def espressoCore = "3.2.0"
// UtilDependencies
def zXCore = "3.3.2"
def glideGlide = "4.11.0"
def glideCompiler = "4.11.0"
def pictureLibrary = "v2.5.2"
def room = "1.1.1"
ext {
// 全局配置信息
config = [
"compileSdkVersion": 30,
"buildToolsVersion": "30.0.2",
"applicationId" : "com.mul.utils",
"minSdkVersion" : 21,
"targetSdkVersion" : 30,
"versionCode" : versionCode,
"versionName" : versionName,
]
// 统一java jdk版本
compileOptions = [
"sourceCompatibility": JavaVersion.VERSION_1_8,
"targetCompatibility": JavaVersion.VERSION_1_8
]
dependencies = [
"appcompat" : "androidx.appcompat:appcompat:${appcompat}",
"material" : "com.google.android.material:material:${recyclerview}",
"recyclerview" : "androidx.recyclerview:recyclerview:${recyclerview}",
"constraintLayout": "androidx.constraintlayout:constraintlayout:${constraintLayout}",
"junit" : "junit:junit:${junit}",
"runner" : "androidx.test:runner:${runner}",
"espressoCore" : "androidx.test.espresso:espresso-core:${espressoCore}",
]
UtilDependencies = [
// glide
"glideGlide" : "com.github.bumptech.glide:glide:${glideGlide}",
"glideCompiler" : "com.github.bumptech.glide:compiler:${glideCompiler}",
// 图片选择器
"pictureLibrary": "com.github.LuckSiege.PictureSelector:picture_library:${pictureLibrary}",
// zxing 二维码
"zXCore" : "com.google.zxing:core:${zXCore}",
// room数据库
"room" : "android.arch.persistence.room:runtime:${room}",
"roomCompiler" : "android.arch.persistence.room:compiler:${room}",
]
}
1
https://gitee.com/zhangdcyf/utils.git
git@gitee.com:zhangdcyf/utils.git
zhangdcyf
utils
utils
master

搜索帮助