-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconfig.gradle
61 lines (54 loc) · 3.2 KB
/
config.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
ext {
android = [
compileSdkVersion: 29,
minSdkVersion : 15,
targetSdkVersion : 28,
versionCode : 1,
versionName : "1.0",
buildToolsVersion: "29.0.3"
]
dependVersion = [
appcompat : "29.0.0",
constraint : "1.0.2",
junit : "4.12",
runner : "1.0.1",
espresso : "3.0.1",
glide : "4.8.0",
design : "28.0.0",
PhotoView : "2.0.0",
multidex : "1.0.3",
leakcanaryAndroid : "1.6.1",
leakcanaryAndroidNoOp : "1.6.1",
leakcanarySupportFragment: "1.6.1",
supportV4 : "29.0.0",
// rxjava : "2.0.0",
// rxandroid : "2.0.0",
rxlifecycleComponents : "2.1.0",
recyclerview : "29.0.0",
imagezoom : "1.0.4",
picasso : "2.5.2"
]
dependencies = [
appcompatV7 : 'androidx.appcompat:appcompat:1.0.0',
constraint : 'androidx.constraintlayout:constraintlayout:1.1.3',
junit : "junit:junit:${dependVersion.junit}",
runner : 'androidx.test:runner:1.1.0',
espresso : 'androidx.test.espresso:espresso-core:3.1.0',
glide : "com.github.bumptech.glide:glide:${dependVersion.glide}",
design : 'com.google.android.material:material:1.0.0',
PhotoView : "com.github.chrisbanes:PhotoView:${dependVersion.PhotoView}",
multidex : 'androidx.multidex:multidex:2.0.0',
leakcanaryAndroid : "com.squareup.leakcanary:leakcanary-android:${dependVersion.leakcanaryAndroid}",
leakcanaryAndroidNoOp : "com.squareup.leakcanary:leakcanary-android-no-op:${dependVersion.leakcanaryAndroidNoOp}",
leakcanarySupportFragment: "com.squareup.leakcanary:leakcanary-support-fragment:${dependVersion.leakcanarySupportFragment}",
supportV4 : 'androidx.legacy:legacy-support-v4:1.0.0',
// rxjava : "io.reactivex.rxjava2:rxjava:${dependVersion.rxjava}",
// rxandroid : "io.reactivex.rxjava2:rxandroid:${dependVersion.rxandroid}",
rxlifecycleComponents : "com.trello.rxlifecycle2:rxlifecycle-components:${dependVersion.rxlifecycleComponents}",
recyclerview : 'androidx.recyclerview:recyclerview:1.0.0',
imagezoom : "it.sephiroth.android.library.imagezoom:library:${dependVersion.imagezoom}",
picasso : "com.squareup.picasso:picasso:${dependVersion.picasso}"
// rxlifecycleComponents:"com.trello.rxlifecycle2:rxlifecycle-android:${dependVersion.rxlifecycleComponents}"
//implementation 'com.trello.rxlifecycle2:rxlifecycle-android:2.2.2'
]
}