-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
71 lines (62 loc) · 2.28 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.versions = [
'appName' : 'Kutuki',
'minSdkVersion' : 21,
'targetSdkVersion' : 29,
'compileSdkVersion' : 29,
'kotlin_version' : '1.3.61',
'design' : '28.0.0',
'supportLibrary' : '28.0.0',
'constraintLibrary' : '1.1.3',
'multidex' : '1.0.3',
'dagger2Version' : '2.22.1',
'daggerAndroidSupport': '2.24',
'rxAndroidVersion' : '2.1.1',
'rxJava2Version' : '2.2.8',
'retrofit' : '2.6.1',
'okHttp3' : '4.9.0',
'gson' : '2.8.5',
'timber' : '4.7.1',
'dexter' : '5.0.0',
'firebaseCore' : '17.2.1',
'firebaseMessaging' : '20.1.0',
'glide' : '4.9.0',
'lifecycle' : '1.1.1',
'okttpInterceptor' : '4.1.0',
'rxjavaAdapter' : '2.6.1',
'eventBus' : '3.1.1',
'playServices' : '17.0.2',
'paging_version' : "2.1.1",
'workManager' : '2.2.0',
'RxNetwork' : "3.0.3",
'uCrop' : "2.2.3",
'prefixSuffix' : "1.2.2",
'lottieVersion' : "3.3.1",
'anko_version' : '0.10.8',
// test frameworks
'junit' : '4.12',
'testRunner' : '1.0.2',
'espresso' : '3.0.2'
]
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin_version}"
classpath 'com.google.gms:google-services:4.3.3'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'http://dl.bintray.com/kotlin/kotlin-eap-1.2' }
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}