-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (37 loc) · 1.3 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
buildscript {
ext {
publish_group_id = 'com.plusmobileapps'
publish_version = '1.0'
compile_sdk = 31
min_sdk = 21
target_sdk = 31
kotlin_version = '1.5.31'
compose_version = '1.0.5'
appcompat_version = '1.4.0'
core_ktx_version = '1.7.0'
compose_activity_version = '1.4.0'
fragment_ktx_version = '1.4.0'
lifecycle_version = '2.4.0'
livedata_ktx_version = '2.4.0'
viewmodel_ktx_version = '2.4.0'
hilt_version = '2.38.1'
mockk_version = '1.12.1'
junit_version = '4.13.2'
coroutines_version = '1.6.0'
turbine_version = '0.7.0'
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.0.0' apply false
id 'com.android.library' version '7.0.0' apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
id("org.jetbrains.dokka") version "1.6.10"
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply from: "${rootDir}/scripts/publish-root.gradle"