-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (32 loc) 路 1.32 KB
/
Copy pathbuild.gradle
File metadata and controls
37 lines (32 loc) 路 1.32 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
nav_version = "2.5.3"
coil_version = '2.6.0'
camerax_version = '1.3.4'
kotlin_version = '2.0.21'
paging_version = "3.3.2"
room_version = "2.6.1"
hilt_version = "2.55"
}
dependencies {
// classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// Make sure that you have the Google services Gradle plugin dependency
classpath 'com.google.gms:google-services:4.4.2'
// Add the dependency for the Crashlytics Gradle plugin
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.2'
}
repositories {
mavenCentral()
}
}
plugins {
id 'com.android.application' version '8.10.1' apply false
id 'com.android.library' version '8.10.1' apply false
id 'org.jetbrains.kotlin.android' version '2.0.21' apply false
id 'com.google.dagger.hilt.android' version '2.55' apply false
id 'org.jetbrains.kotlin.jvm' version '1.8.0' apply false
id("com.google.devtools.ksp") version "2.0.21-1.0.26" apply false
}