-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (24 loc) · 894 Bytes
/
build.gradle
File metadata and controls
24 lines (24 loc) · 894 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
buildscript {
ext {
compose_ui_version = '1.1.1'
hilt_version = '2.40.1'
hilt_compiler_version = '2.38.1'
retrofit_version = '2.9.0'
gson_version = '2.9.0'
nav_version = '2.4.2'
compose_constraintlayout_version = '1.0.1'
chrome_tabs_version = '1.4.0'
}
dependencies {
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
repositories {
google()
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.3.0-beta05' apply false
id 'com.android.library' version '7.3.0-beta05' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}