We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 267270a commit f2bdb4eCopy full SHA for f2bdb4e
app/build.gradle
@@ -30,6 +30,11 @@ android {
30
testOptions.unitTests {
31
includeAndroidResources = true
32
}
33
+
34
+ packagingOptions {
35
+ pickFirst 'META-INF/AL2.0'
36
+ pickFirst 'META-INF/LGPL2.1'
37
+ }
38
39
40
dependencies {
@@ -70,6 +75,7 @@ dependencies {
70
75
// AndroidX Test - Instrumented testing
71
76
androidTestImplementation "androidx.test.ext:junit:$androidXTestExtKotlinRunnerVersion"
72
77
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
78
+ androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesVersion"
73
79
74
80
// Kotlin
81
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
0 commit comments