-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
17 lines (17 loc) · 869 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
buildscript {
dependencies {
classpath 'com.google.gms:google-services:4.4.2'
classpath 'com.android.tools.build:gradle:8.5.2'
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.2'
classpath 'com.google.firebase:perf-plugin:1.4.2'
classpath 'com.google.firebase:firebase-appdistribution-gradle:5.0.0'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.5.2' apply false
id 'com.android.library' version '8.5.2' apply false
id 'org.jetbrains.kotlin.android' version '2.0.0' apply false
id 'com.google.dagger.hilt.android' version '2.51.1' apply false
id 'com.google.devtools.ksp' version '2.0.0-1.0.21' apply false
id "org.jetbrains.kotlin.plugin.compose" version "2.0.0" apply false
}