-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
60 lines (53 loc) · 1.66 KB
/
Copy pathbuild.gradle
File metadata and controls
60 lines (53 loc) · 1.66 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// Sdk and tools
minSdkVersion = 21
targetSdkVersion = 31
compileSdkVersion = 31
buildToolsVersion = '29.0.2'
// App dependencies
gradleVersion = '4.1.0'
appCompatVersion = '1.3.1'
constraintLayoutVersion = '2.1.2'
materialVersion = '1.2.0'
fragmentVersion = '1.3.0'
preferenceVersion = '1.1.0'
splashScreenVersion = '1.0.0-beta01'
glideVersion = '4.7.1'
kotlinVersion = '1.6.0'
ktxVersion = '1.0.2'
coroutinesVersion = '1.5.2'
lifecycleVersion = '2.4.0'
firebaseBomVersion = '26.1.1'
jodaTimeVersion = '2.10.8'
playServicesVersion = '18.0.0'
viewPagerVersion = '1.0.0'
roomVersion = '2.2.5'
googleServices = '4.3.4'
crashlyticsGradleVersion = '2.4.1'
workVersion = '2.7.0'
gsonVersion = '2.8.2'
hiltVersion = '2.38.1'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "com.google.gms:google-services:$googleServices"
classpath "com.google.firebase:firebase-crashlytics-gradle:$crashlyticsGradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}