Skip to content

Commit 9d78359

Browse files
committed
build 설정 - mockito 라이브러리 추가
1. mockito 라이브러리 추가 2. kotlinx-coroutines-debug에 의존되어 발생하는 파일 중첩 문제 수정 Kotlin/kotlinx.coroutines#2023
1 parent affd646 commit 9d78359

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

app/build.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ android {
3434
packagingOptions {
3535
pickFirst 'META-INF/AL2.0'
3636
pickFirst 'META-INF/LGPL2.1'
37+
pickFirst "win32-x86-64/attach_hotspot_windows.dll"
38+
pickFirst "win32-x86/attach_hotspot_windows.dll"
39+
pickFirst "META-INF/licenses/ASM"
3740
}
3841
}
3942

@@ -76,6 +79,7 @@ dependencies {
7679
androidTestImplementation "androidx.test.ext:junit:$androidXTestExtKotlinRunnerVersion"
7780
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
7881
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesVersion"
82+
androidTestImplementation "org.mockito:mockito-core:$mockitoVersion"
7983

8084
// Kotlin
8185
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"

build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,6 @@ ext {
5555
timberVersion = '4.7.1'
5656
truthVersion = '1.1.2'
5757
fragmentVersion ='1.4.1'
58+
mockitoVersion ='4.11.0'
59+
dexMakerVersion ='3.3.3'
5860
}

0 commit comments

Comments
 (0)