-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.gradle
155 lines (127 loc) · 6.05 KB
/
common.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
// 通用配置
android {
// 编译源码版本
compileSdkVersion 30
defaultConfig {
// 最低安装版本
minSdkVersion 21
// 目标适配版本
targetSdkVersion 30
versionName '1.0'
versionCode 10
}
// 支持 Java JDK 8
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
// 设置存放 so 文件的目录
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}
// 可在 Studio 最左侧中的 Build Variants 选项中切换默认的构建类型
buildTypes {
// 调试版本
debug {}
// 预览版本
preview {}
// 正式版本
release {}
}
// 代码警告配置
lintOptions {
// 禁用文本硬编码警告
disable 'HardcodedText'
// 禁用图片描述警告
disable 'ContentDescription'
}
}
afterEvaluate {
// 前提条件是这个 Module 工程必须是 Library 类型,并且排除名为 umeng 的 Module 工程
if (android.defaultConfig.applicationId == null && "umeng" != getName()) {
// 排除 BuildConfig.class
generateReleaseBuildConfig.enabled = false
generatePreviewBuildConfig.enabled = false
generateDebugBuildConfig.enabled = false
}
}
dependencies {
// 依赖 libs 目录下所有的 jar 和 aar 包
implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
// AndroidX 库:https://github.com/androidx/androidx
implementation 'androidx.appcompat:appcompat:1.3.1'
// Material 库:https://github.com/material-components/material-components-android
implementation 'com.google.android.material:material:1.4.0'
// 权限请求框架:https://github.com/getActivity/XXPermissions
implementation 'com.github.getActivity:XXPermissions:12.3'
// 标题栏框架:https://github.com/getActivity/TitleBar
implementation 'com.github.getActivity:TitleBar:9.2'
// 吐司框架:https://github.com/getActivity/ToastUtils
implementation 'com.github.getActivity:ToastUtils:9.5'
// 网络请求框架:https://github.com/getActivity/EasyHttp
implementation 'com.github.getActivity:EasyHttp:10.2'
// OkHttp 框架:https://github.com/square/okhttp
// noinspection GradleDependency
implementation 'com.squareup.okhttp3:okhttp:3.12.13'
// Json 解析框架:https://github.com/google/gson
implementation 'com.google.code.gson:gson:2.8.8'
// Gson 解析容错:https://github.com/getActivity/GsonFactory
implementation 'com.github.getActivity:GsonFactory:5.2'
// Shape 框架:https://github.com/getActivity/ShapeView
implementation 'com.github.getActivity:ShapeView:8.2'
//implementation project(':LocalRepo:ShapeView-release')
// AOP 插件库:https://mvnrepository.com/artifact/org.aspectj/aspectjrt
implementation 'org.aspectj:aspectjrt:1.9.6'
// 图片加载框架:https://github.com/bumptech/glide
// 官方使用文档:https://github.com/Muyangmin/glide-docs-cn
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
// 沉浸式框架:https://github.com/gyf-dev/ImmersionBar
implementation 'com.gyf.immersionbar:immersionbar:3.0.0'
// 手势 ImageView:https://github.com/Baseflow/PhotoView
implementation 'com.github.Baseflow:PhotoView:2.3.0'
// Bugly 异常捕捉:https://bugly.qq.com/docs/user-guide/instruction-manual-android/?v=20190418140644
implementation 'com.tencent.bugly:crashreport:3.4.4'
implementation 'com.tencent.bugly:nativecrashreport:3.9.2'
// 动画解析库:https://github.com/airbnb/lottie-android
// 动画资源:https://lottiefiles.com、https://icons8.com/animated-icons
implementation 'com.airbnb.android:lottie:4.1.0'
// 上拉刷新下拉加载框架:https://github.com/scwang90/SmartRefreshLayout
implementation 'com.scwang.smart:refresh-layout-kernel:2.0.3'
implementation 'com.scwang.smart:refresh-header-material:2.0.3'
// 日志打印框架:https://github.com/JakeWharton/timber
implementation 'com.jakewharton.timber:timber:4.7.1'
// 指示器框架:https://github.com/ongakuer/CircleIndicator
implementation 'me.relex:circleindicator:2.1.6'
// 腾讯 MMKV:https://github.com/Tencent/MMKV
implementation 'com.tencent:mmkv-static:1.2.10'
// 内存泄漏监测框架:https://github.com/square/leakcanary
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
previewImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
// 实体代码构建器
implementation 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
implementation('com.github.GitHubWebb.frameLibraryWidget:frameLibraryWidget:2.0.38-androidx') {
exclude group: 'com.android.support'
exclude group: 'com.squareup.okhttp3'
exclude group: 'com.github.bumptech.glide'
exclude group: 'com.github.chrisbanes', module: 'PhotoView'
exclude group: 'org.aspectj', module: 'aspectjrt'
exclude group: 'androidx.legacy', module: 'legacy-support-v4'
}
// 多语种:https://github.com/getActivity/MultiLanguages
// 悬浮窗:https://github.com/getActivity/XToast
// 日志输出:https://github.com/getActivity/Logcat
// 工具类:https://github.com/Blankj/AndroidUtilCode
// 轮播图:https://github.com/bingoogolapple/BGABanner-Android
// 二维码:https://github.com/bingoogolapple/BGAQRCode-Android
// 跑马灯:https://github.com/sunfusheng/MarqueeView
// 对象注解:https://www.jianshu.com/p/f1f888e4a35f
// 对象存储:https://github.com/leavesC/DoKV
// 多渠道打包:https://github.com/Meituan-Dianping/walle
// 设备唯一标识:http://msa-alliance.cn/col.jsp?id=120
// 嵌套滚动容器:https://github.com/donkingliang/ConsecutiveScroller
// 隐私调用监控:https://github.com/huage2580/PermissionMonitor
}