-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
18 lines (18 loc) · 931 Bytes
/
build.gradle.kts
File metadata and controls
18 lines (18 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.android) apply false
// maybe not below
alias(libs.plugins.kotlin.compose) apply false
alias(libs.plugins.kotlinMultiplatform) apply false
alias(libs.plugins.androidLibrary) apply false
id("com.google.devtools.ksp") version "2.0.0-1.0.24" apply false
id("com.google.dagger.hilt.android") version "2.52" apply false
id("com.google.gms.google-services") version "4.4.2" apply false
// Add the Performance Monitoring Gradle plugin
id("com.google.firebase.firebase-perf") version "1.4.2" apply false
// Add the dependency for the Crashlytics Gradle plugin
id("com.google.firebase.crashlytics") version "3.0.2" apply false
// not below
alias(libs.plugins.jetbrains.kotlin.jvm) apply false
}