forked from tolgaprm/Mova-MovieApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (32 loc) · 1.02 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
buildscript {
ext {
nav_version = '2.5.3'
hilt_version = '2.44'
coroutines = '1.6.4'
moshi_version = '1.9.3'
paging_version = '3.1.1'
data_store_version = "1.0.0"
kotlin_version = '1.8.10'
room_version = "2.5.0"
work_version = "2.8.0"
coil_version="2.2.2"
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath 'com.google.gms:google-services:4.3.15'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.4'
}
repositories {
mavenCentral()
}
}
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id 'androidx.navigation.safeargs.kotlin' version '2.4.1' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}