forked from Ethran/notable
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (26 loc) · 955 Bytes
/
build.gradle
File metadata and controls
28 lines (26 loc) · 955 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
28
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.2'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '9.1.0' apply false
id 'com.android.library' version '9.1.0' apply false
id 'org.jetbrains.kotlin.android' version '2.3.10' apply false
id 'org.jetbrains.kotlin.jvm' version '2.3.10'
id 'org.jetbrains.kotlin.plugin.serialization' version '2.3.10'
id 'com.google.devtools.ksp' version '2.3.2'
id 'org.jetbrains.kotlin.plugin.compose' version '2.3.10' apply false
id 'com.google.dagger.hilt.android' version '2.59.2' apply false
}
/*task clean(type: Delete) {
delete rootProject.buildDir
}*/