-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathbuild.gradle
More file actions
60 lines (53 loc) · 1.5 KB
/
Copy pathbuild.gradle
File metadata and controls
60 lines (53 loc) · 1.5 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
buildscript {
ext {
compileSdkVersion = 30
minSdkVersion = 21
targetSdkVersion = 30
playServicesAuth = "19.0.0"
firebaseAuth = "20.0.1"
firebaseCore = "18.0.0"
firebaseFirestore = "22.0.1"
constraintLayoutVersion = '2.1.0-alpha2'
room = '2.3.0-alpha04'
coroutinesVersion = "1.4.1"
glideVersion = '4.8.0'
gradleVersion = '3.3.2'
junitVersion = '5.3.1'
kotlinVersion = '1.4.10'
ktlintVersion = '0.30.0'
ktxVersion = '1.3.2'
lifecycleVersion = '2.2.0'
materialVersion = '1.2.1'
navigationVersion = '2.3.2'
recyclerViewVersion = '1.2.0-beta01'
roomVersion = '2.1.0-alpha04'
runnerVersion = '1.0.1'
supportLibraryVersion = '1.2.0'
}
repositories {
google()
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath 'com.google.gms:google-services:4.3.4'
classpath 'io.fabric.tools:gradle:1.28.0'
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}