-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (50 loc) · 1.35 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
buildscript {
ext.navigationVersion = "2.1.0"
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
classpath 'com.google.gms:google-services:4.2.0'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
// Sdk and tools
// Support library and architecture components support minSdk 14 and above.
minSdkVersion = 26
targetSdkVersion = 28
compileSdkVersion = 28
// App dependencies
appCompatVersion = '1.0.2'
androidXLegacySupport = '1.0.0'
materialVersion = '1.0.0'
recyclerViewVersion = '1.0.0'
constraintLayoutVersion = '1.1.3'
materialVersion = '1.0.0'
androidXAnnotations = '1.0.1'
firebaseMessaging = '20.0.0'
viewPager2Version = '1.0.0-rc01'
keyboardVersion = '2.3.0'
retrofitVersion = '2.6.1'
okhttpVersion = '4.2.0'
rxJavaVersion = '2.2.12'
rxAndroidVersion = '2.1.1'
permissionVersion = '3.0.0'
timberVersion = '4.7.1'
archLifecycleVersion = '2.1.0'
daggerVersion = '2.24'
junitVersion = '4.12'
androidXTestRunnerVersion = '1.1.1'
espressoVersion = '3.1.0'
}