-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathconfig.gradle
More file actions
42 lines (40 loc) · 2.13 KB
/
config.gradle
File metadata and controls
42 lines (40 loc) · 2.13 KB
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
ext {
android = [
compileSdkVersion: 28,
minSdkVersion : 19,
libMinSdkVersion : 14,
targetSdkVersion : 28,
]
dependencies = [
MTRVA_File : ':multitypeadapter',
component_File : ':component',
MTRVA : 'com.crazysunj:mtrva:2.5.2',
component : 'com.crazysunj:mtrva-component:2.5.2',
diffutil : 'com.crazysunj:diffutil:0.0.2',
multidex : 'androidx.multidex:multidex:2.0.1',
recyclerview : 'androidx.recyclerview:recyclerview:1.1.0-beta04',
appcompat : 'androidx.appcompat:appcompat:1.1.0',
constraintlayout : 'androidx.constraintlayout:constraintlayout:2.0.0-beta2',
material : 'com.google.android.material:material:1.0.0',
shimmer : 'com.facebook.shimmer:shimmer:0.5.0',
rxandroid : 'io.reactivex.rxjava2:rxandroid:2.1.1',
rxjava : 'io.reactivex.rxjava2:rxjava:2.2.8',
itemDecoration : 'com.crazysunj:itemdecoration:0.3.1-x',
materialsearchview: 'com.miguelcatalan:materialsearchview:1.4.0',
SuperTextView : 'com.github.chenBingX:SuperTextView:3.2.5.99',
roundedimageview : 'com.makeramen:roundedimageview:2.3.0',
junit : 'junit:junit:4.12',
debugLeakcanary : 'com.squareup.leakcanary:leakcanary-android:1.6.3',
releaseLeakcanary : 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.3',
smartRefreshLayout: 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0'
]
maven = [
groupId : 'com.crazysunj',
mtrvaArtifactId : 'mtrva',
componentArtifactId: 'mtrva-component',
publishVersion : '2.5.2',
desc : 'MultiTypeRecyclerViewAdapter For Android',
website : 'https://github.com/crazysunj/MultiTypeRecyclerViewAdapter',
connection : 'scm:https://github.com/crazysunj/MultiTypeRecyclerViewAdapter.git'
]
}