-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.module.feature-and-app.gradle
More file actions
43 lines (34 loc) · 1.01 KB
/
build.module.feature-and-app.gradle
File metadata and controls
43 lines (34 loc) · 1.01 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
43
apply plugin: 'kotlin-android'
apply from: "$rootDir/build.config.jvm.gradle"
apply from: "$rootDir/build.dep.di.gradle"
apply from: "$rootDir/build.dep.compose.gradle"
android {
compileSdk = rootProject.ext.compileSdkVersion
defaultConfig {
targetSdk = rootProject.ext.targetSdkVersion
minSdk = rootProject.ext.minSdkVersion
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary = true
}
}
buildFeatures {
compose = true
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
}
dependencies {
implementation project(':core:utils')
implementation(libs.kermit)
implementation(libs.activityCompose)
implementation(libs.koin)
testImplementation libs.junit
testImplementation libs.kotlinx.coroutines.test
testImplementation libs.turbine
testImplementation libs.mockk.android
testImplementation libs.mockk.agent
}