-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild.gradle
51 lines (44 loc) · 1.44 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.9.10'
repositories {
google()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
mavenCentral()
}
dependencies {
classpath "com.google.android.gms:oss-licenses-plugin:0.10.6"
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.7'
}
ext {
compose_version = '1.5.3'
coroutines_version = '1.7.3'
retrofit = '2.9.0'
room_version = "2.6.0"
nav_version = "2.8.0"
}
}
plugins {
alias libs.plugins.kotlin.serialization.plugin apply false
//com.android.tools.build:gradle:8.1.3
alias(libs.plugins.android.application) apply false
// classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
alias(libs.plugins.kotlin.android) apply false
//classpath 'com.google.dagger:hilt-android-gradle-plugin:2.48.1'
alias(libs.plugins.dagger.hilt.android) apply false
alias(libs.plugins.android.test) apply false
alias(libs.plugins.compose.compiler) apply false
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}