-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
24 lines (24 loc) · 894 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_material_version = '1.3.1'
compose_version = '1.3.1'
compose_ui_version = '1.3.3'
compose_compiler_version = '1.4.3'
room_version = '2.4.3'
secretsGradlePlugin = '2.0.1'
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:2.44"
classpath("com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:$secretsGradlePlugin")
}
repositories {
mavenCentral()
}
}
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.10' apply false
id("com.google.dagger.hilt.android") version "2.44" apply false
}