-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (25 loc) · 924 Bytes
/
build.gradle
File metadata and controls
27 lines (25 loc) · 924 Bytes
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
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
// Add the dependency for the Google services Gradle plugin
classpath 'com.google.gms:google-services:4.4.4'
}
ext {
compose_version = '1.10.6'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '9.0.1' apply false
id 'com.android.library' version '9.0.1' apply false
id 'org.jetbrains.kotlin.jvm' version '2.3.20' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '2.3.20' apply false
id 'com.google.devtools.ksp' version '2.3.6' apply false
id 'org.jetbrains.kotlin.plugin.compose' version '2.3.20' apply false
id 'com.google.dagger.hilt.android' version '2.59.2' apply false
}
/*task clean(type: Delete) {
delete rootProject.buildDir
}*/