-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
22 lines (21 loc) · 868 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
// other repositories...
mavenCentral()
}
dependencies {
// other plugins...
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.48'
}
}
plugins {
id("com.android.application") version '8.1.3' apply false
id("com.android.library") version '8.1.3' apply false
id("org.jetbrains.kotlin.android") version "1.9.0" apply false
id("com.google.devtools.ksp") version "1.9.0-1.0.11" apply false
id("com.google.dagger.hilt.android") version "2.47" apply false
id("com.google.gms.google-services") version "4.3.15" apply false
id("com.google.firebase.crashlytics") version "2.9.4" apply false
id("com.google.firebase.firebase-perf") version "1.4.2" apply false
}