-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
22 lines (20 loc) · 884 Bytes
/
build.gradle
File metadata and controls
22 lines (20 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
buildscript {
ext {
compose_version = '1.3.1'
dagger_hilt_version = "2.38.1"
google_play_version = "4.3.13"
firebase_distribution_version = "3.0.3"
dagger_hilt_version = '2.42'
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$dagger_hilt_version"
classpath "com.google.firebase:firebase-appdistribution-gradle:$firebase_distribution_version"
classpath "com.google.gms:google-services:$google_play_version"
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.0.0-alpha06' apply false
id 'com.android.library' version '8.0.0-alpha06' apply false
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
id 'org.jlleitschuh.gradle.ktlint' version '10.2.1'
}