diff --git a/app/build.gradle b/app/build.gradle index 489d5e991ba1e28c423be813b2dee2578c84dbbd..5f9e7b8c64ee42a2150b609cdf623c7a0b1a3ff2 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -83,7 +83,6 @@ dependencies { //Kotlin implementation "androidx.core:core-ktx:1.10.0" - implementation 'androidx.work:work-runtime-ktx:2.8.1' //androidx lifecycle def lifecycle_version = "2.6.1" @@ -171,11 +170,16 @@ dependencies { def work_version = "2.8.1" implementation "androidx.work:work-runtime-ktx:$work_version" + //Coroutines + def coroutines_version = "1.6.4" + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version" + //test testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' androidTestImplementation "androidx.work:work-testing:$work_version" + androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines_version" } if (getGradle().getStartParameter().getTaskRequests().toString().toLowerCase().contains("gplay")) {