forked from AgaKhanFoundation/WCF-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
92 lines (70 loc) · 1.99 KB
/
build.gradle
File metadata and controls
92 lines (70 loc) · 1.99 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
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.50'
ext.android_gradle_plugin = '3.5.1'
ext.navigationVersion = '2.1.0'
repositories {
google()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.android.tools.build:gradle:$android_gradle_plugin"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
// Build info
compileSdkVer = 28
minSdkVer = 23
targetSdkVer = 28
buildToolsVer = '28.0.3'
//Support Libs
supportLibVersion = '1.0.0'
multidexLibVersion = '2.0.0'
constraintLayoutVersion = '2.0.0-beta2'
versions_core_ktx = "1.1.0"
versions_arch_core = "2.0.1"
googleApiVersion = '17.0.0'
//Google Play Services
playServicesVersion = '17.0.0'
playServicesCoreVersion = '1.6.3'
//Facebook
facebookSdkVersion = '[5,6)'
//ExoPlayer Google
exoPlayerVersion = '2.8.4'
//Retrofit
retrofitVersion = '2.5.0'
retrofitLoggingInterceptorVersion = '3.12.1'
okHttpVersion = '3.12.1'
//RxJava
rxJavaVersion = '2.2.5'
rxAndroidVersion = '2.1.0'
//Gson
gsonVersion = '2.8.5'
//Dagger
dagger2Version = '2.15'
daggerKaptCompilerVersion = '2.14.1'
//Glide
glideVersion = '4.10.0'
circleimageviewVersion='3.0.0'
//Testing
jUnitVersion = '4.12'
mockitoVersion = '1.10.19'
jsonTesting = 'org.json:json:20140107'
robolectricVersion = '3.8'
testUiAutoVersion = '18:2.1.3'
espressoVersion = '3.1.0-alpha4'
testRunnerVersion = '1.1.0-alpha4'
}