-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (38 loc) · 1.15 KB
/
Copy pathbuild.gradle
File metadata and controls
42 lines (38 loc) · 1.15 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
34
35
36
37
38
39
40
41
42
buildscript {
ext {
compose_version = '1.1.1'
koin_version = '3.2.0'
coroutines_version = '1.6.3'
accompanist_version = '0.23.1'
lifecycle_version = '2.5.0'
room_version = '2.4.2'
paging_version = '3.1.1'
retrofit_version = '2.9.0'
okhttp_version = '4.9.0'
}
repositories {
mavenCentral()
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.0' apply false
id 'com.android.library' version '7.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
id 'org.jetbrains.kotlin.jvm' version '1.6.10' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.6.10' apply false
id 'org.jlleitschuh.gradle.ktlint' version '10.3.0'
}
subprojects {
apply plugin: "org.jlleitschuh.gradle.ktlint"
repositories {
// Required to download KtLint
mavenCentral()
}
// Optionally configure plugin
ktlint {
debug = true
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}