-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
29 lines (28 loc) · 1.07 KB
/
build.gradle
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
buildscript {
ext {
hilt_version = '2.44'
lifecycle_version = '2.5.1'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:8.0.2"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
//Firebase SDK 추가
classpath 'com.google.gms:google-services:4.3.15'
// Add the dependency for the Google services Gradle plugin
classpath 'com.google.gms:google-services:4.3.15'
}
}
plugins {
id 'com.android.application' version '7.3.1' apply false
id 'com.android.library' version '7.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
id 'org.jetbrains.kotlin.multiplatform' version '1.7.10' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.20' apply false
id 'org.jlleitschuh.gradle.ktlint' version '11.0.0' apply false
}