forked from stoatchat/for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (30 loc) · 1.16 KB
/
build.gradle
File metadata and controls
33 lines (30 loc) · 1.16 KB
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
29
30
31
32
33
buildscript {
ext {
compose_compiler_version = '1.5.10'
compose_bom_version = '2024.02.01'
accompanist_version = '0.34.0'
okhttp_version = '4.10.0'
nav_version = '2.7.5'
hilt_version = '2.44'
coil_version = '2.2.2'
glide_version = '4.16.0'
ktor_version = '2.3.0'
aboutlibraries_version = '10.9.1'
media3_version = '1.3.0'
livekit_version = '2.2.0'
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.4.0-beta01' apply false
id 'com.android.library' version '8.4.0-beta01' apply false
id 'org.jetbrains.kotlin.android' version '1.9.22' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.22' apply false
id "com.google.dagger.hilt.android" version "2.44" apply false
id 'com.mikepenz.aboutlibraries.plugin' version "10.9.1" apply false
id 'com.google.devtools.ksp' version '1.9.22-1.0.17' apply false
id 'org.jmailen.kotlinter' version "4.0.0" apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}