-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
174 lines (138 loc) · 3.87 KB
/
build.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
maven { url 'https://jitpack.io' }
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10'
classpath 'com.github.kezong:fat-aar:1.3.8'
classpath 'com.github.MJLblabla:docPlugin:v1.0.4'
}
}
allprojects {
/**
* 这行代码就是配置依赖版本插件
*/
apply plugin: HapiDependPlugin
repositories {
maven { url 'https://jitpack.io' }
google()
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
/**
* 如果拷贝模块依赖报错找不到depend.xxxx
* 替换成具体的版本或拷贝依赖版本配置
*/
public class HapiDependPlugin implements Plugin<Project> {
void apply(Project project) {
project.extensions.create("depend", DependsComp)
}
}
/**
* 依赖版本统一配置
*/
public class DependsComp {
int compileSdkVersion = 33
String buildToolsVersion = "30.0.3"
int minSdkVersion = 21
int targetSdkVersion = 33
String androidxVersion = "1.2.0"
String designVersion = "1.0.0"
def lifecycle_version = "2.2.0"
boolean latest = true
def appcompat() {
return appcompat(androidxVersion)
}
def appcompat(String version) {
return "androidx.appcompat:appcompat:${version}"
}
def cardview() {
return cardview(designVersion)
}
def cardview(String version) {
return "androidx.cardview:cardview:${version}"
}
def recyclerview() {
return recyclerview("1.1.0")
}
def recyclerview(String version) {
return "androidx.recyclerview:recyclerview:${version}"
}
def constraintLayout() {
return constraintLayout("2.0.4")
}
def constraintLayout(String version) {
return "androidx.constraintlayout:constraintlayout:${version}"
}
def fragment() {
fragment("1.2.5")
}
def fragment(String version) {
return "androidx.fragment:fragment:${version}"
}
def viewpager() {
viewpager(designVersion)
}
def viewpager(String version) {
return "androidx.viewpager:viewpager:${version}"
}
def annotations() {
annotations(androidxVersion)
}
def annotations(String version) {
return "androidx.annotation:annotation:${version}"
}
def coroutines() {
return coroutines('1.3.9')
}
def coroutines(String version) {
return "org.jetbrains.kotlinx:kotlinx-coroutines-android:${version}"
}
def runtime_ktx() {
return "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version"
}
def lifecycle_ext(){
return "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
}
def lifecycleCompiler() {
return "androidx.lifecycle:lifecycle-compiler:$lifecycle_version"
}
def activityKtx() {
return "androidx.activity:activity-ktx:1.1.0"
}
def fragmentKtx() {
return "androidx.fragment:fragment-ktx:1.2.5"
}
def swiperefreshlayout() {
swiperefreshlayout(designVersion)
}
def swiperefreshlayout(String version) {
return "androidx.swiperefreshlayout:swiperefreshlayout:${version}"
}
def glide() {
return glide("4.11.0")
}
def glide(String version) {
return "com.github.bumptech.glide:glide:${version}"
}
def okhttp3(){
return okhttp3("4.2.2")
}
def gson(){
return 'com.google.code.gson:gson:2.8.9'
}
def okLoggingInterceptor(){
'com.squareup.okhttp3:logging-interceptor:3.8.0'
}
def okhttp3(String version) {
return "com.squareup.okhttp3:okhttp:${version}"
}
}