-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (49 loc) · 1.79 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
61
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
kotlin_version = '1.6.10'
hiltVersion = "2.38.1"
retrofitVersion = "2.9.0"
appCompatVersion = '1.4.1'
coreVersion = '1.7.0'
constraintLayoutVersion = '2.1.3'
navigationVersion = '2.4.1'
materialVersion = '1.5.0'
recyclerViewVersion = '1.2.1'
glideVersion = '4.13.0'
activityKtxVersion = '1.4.0'
fragmentKtxVersion = '1.4.1'
roomVersion = '2.2.3'
roomRuntimeVersion = '2.4.2'
kotlinCoroutinesVersion = "1.6.0"
lifecycleVersion = "2.4.1"
youtubeVideoPlayerVersion = '11.0.1'
leakCanaryVersion = '2.7'
sqlCipherVersion = '4.5.0'
sqliteVersion = '2.2.0'
shimmerVersion = '0.5.0'
firebaseAnalyticsVersion = '20.1.2'
firebaseCrashlyticsVersion = '18.2.9'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
classpath "com.squareup.leakcanary:leakcanary-deobfuscation-gradle-plugin:$leakCanaryVersion"
classpath 'com.google.gms:google-services:4.3.10'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
}
}
plugins {
id 'com.android.application' version '7.1.3' apply false
id 'com.android.library' version '7.1.3' apply false
id 'org.jetbrains.kotlin.android' version '1.6.20' apply false
id 'com.android.dynamic-feature' version '7.1.3' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}