-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
18 lines (18 loc) · 806 Bytes
/
build.gradle.kts
File metadata and controls
18 lines (18 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
buildscript {
dependencies {
classpath("com.android.tools.build:gradle:8.1.0")
classpath("com.google.gms:google-services:4.4.1")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.9")
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.com.android.application) apply false
alias(libs.plugins.org.jetbrains.kotlin.android) apply false
alias(libs.plugins.kotlin.kapt) apply false
alias(libs.plugins.dagger.hilt) apply false
alias(libs.plugins.kotlinx.serialization) apply false
alias(libs.plugins.google.services) apply false
alias(libs.plugins.secrets.gradle.plugin) apply false
}
true // Needed to make the Suppress annotation work for the plugins block