-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
30 lines (26 loc) · 918 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
25
26
27
28
29
30
buildscript {
ext {
compose_ui_version = '1.4.0'
compose_material_version = '1.4.0'
compose_activity_version = '1.7.0'
core_ktx_version = '1.9.0'
lifecycle_version = '2.6.1'
kotlin_version = '1.8.10'
kotlin_compiler_extension_version = '1.4.3'
junit_version = '4.13.2'
ext_junit_version = '1.1.5'
espresso_core_version = '3.5.1'
mockk_version = '1.13.2'
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.1.2' apply false
id 'com.android.library' version '8.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
id 'org.jlleitschuh.gradle.ktlint' version '11.6.1'
id 'org.jetbrains.dokka' version '1.8.10'
}
task clean(type: Delete) {
delete rootProject.buildDir
}