summaryrefslogtreecommitdiff
path: root/fakelocation
diff options
context:
space:
mode:
Diffstat (limited to 'fakelocation')
-rw-r--r--fakelocation/build.gradle6
-rw-r--r--fakelocation/fakelocationdemo/build.gradle12
2 files changed, 6 insertions, 12 deletions
diff --git a/fakelocation/build.gradle b/fakelocation/build.gradle
index 945cb66..91f8031 100644
--- a/fakelocation/build.gradle
+++ b/fakelocation/build.gradle
@@ -46,11 +46,7 @@ android {
}
dependencies {
- implementation (
- Libs.Kotlin.stdlib,
- Libs.AndroidX.coreKtx,
- Libs.Coroutines.core
- )
+ implementation (libs.bundles.kotlin.android.coroutines)
implementation project(':privacymodule-api')
}
diff --git a/fakelocation/fakelocationdemo/build.gradle b/fakelocation/fakelocationdemo/build.gradle
index 7e05b8a..0145eca 100644
--- a/fakelocation/fakelocationdemo/build.gradle
+++ b/fakelocation/fakelocationdemo/build.gradle
@@ -60,12 +60,10 @@ dependencies {
implementation (
- Libs.Kotlin.stdlib,
- Libs.AndroidX.coreKtx,
- Libs.AndroidX.appCompat,
- Libs.material,
+ libs.androidx.core.ktx,
+ libs.androidx.appcompat,
+ libs.google.material,
)
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.3'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
+ testImplementation libs.junit
+
}