-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (36 loc) · 984 Bytes
/
Copy pathbuild.gradle
File metadata and controls
38 lines (36 loc) · 984 Bytes
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
buildscript {
ext{
kotlin_version = "1.4.21"
google_services = "4.3.4"
firebase_auth = "20.0.2"
firebase_storage = "19.2.1"
lifecycle_version = "2.3.0"
nav_version = "2.3.3"
activity_version = "1.2.0"
fragment_ktx = "1.3.0"
lifecycle_ktx = "2.2.0"
nav_ktx = "2.3.3"
firestore_version = "22.1.0"
firebase_coroutines = "1.1.1"
coroutines_version = "1.4.0"
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.gms:google-services:$google_services"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}