summaryrefslogtreecommitdiff
path: root/fakelocation
diff options
context:
space:
mode:
authorGuillaume Jacquart <guillaume.jacquart@hoodbrains.com>2023-07-11 07:11:16 +0000
committerGuillaume Jacquart <guillaume.jacquart@hoodbrains.com>2023-07-11 07:11:16 +0000
commitf9b0ce84cd3956ad169cb312c52398f7dd10d2fa (patch)
treed1057257791c1a0a9d7e3d7e369380f0438391fb /fakelocation
parent4dcfe5eb84142df16f7b8c5431b4afeb2a28cbc2 (diff)
parent921756bb2f3bb7891386f5aac551fe775d454a78 (diff)
Merge branch '2-integrate_ipscrambling_module' into 'main'
2: integrate ipscrambling module in git repos and update dependencies See merge request e/os/advanced-privacy!137
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
+
}