-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
21 lines (21 loc) · 806 Bytes
/
build.gradle
File metadata and controls
21 lines (21 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
buildscript {
ext {
compose_ui_version = '1.5.1'
kotlin_version = '1.9.0'
}
dependencies {
classpath 'com.android.tools.build:gradle:8.9.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.21"
}
repositories {
mavenCentral()
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.google.gms.google-services") version "4.4.3" apply false
id 'com.android.application' version '8.9.0' apply false
id 'com.android.library' version '8.9.0' apply false
id 'org.jetbrains.kotlin.android' version '2.0.20' apply false
id("com.google.dagger.hilt.android") version "2.51.1" apply false
id("com.google.devtools.ksp") version "2.0.21-1.0.25" apply false
}