From 921756bb2f3bb7891386f5aac551fe775d454a78 Mon Sep 17 00:00:00 2001 From: Guillaume Jacquart Date: Tue, 11 Jul 2023 07:11:15 +0000 Subject: 2: integrate ipscrambling module in git repos and update dependencies --- app/build.gradle | 49 ++++++++++++++++++++++++------------------------- 1 file changed, 24 insertions(+), 25 deletions(-) (limited to 'app/build.gradle') diff --git a/app/build.gradle b/app/build.gradle index 8a9f1fd..af05ec0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -150,36 +150,35 @@ dependencies { implementation project(':trackers') - implementation 'foundation.e:privacymodule.tor:1.10.0-orbot-16.6.3-1' - - implementation 'foundation.e:elib:0.0.1-alpha11' + implementation project(':ipscrambling') implementation ( - Libs.Kotlin.stdlib, - Libs.AndroidX.coreKtx, - Libs.AndroidX.appCompat, - Libs.AndroidX.Fragment.fragmentKtx, - Libs.AndroidX.Lifecycle.runtime, - Libs.AndroidX.Lifecycle.viewmodel, - Libs.AndroidX.work, - Libs.material, - - Libs.AndroidX.navigation.fragmentKtx, - Libs.AndroidX.navigation.uiKtx, - - Libs.Retrofit.retrofit, - Libs.Retrofit.scalars, - - Libs.maplibre, - Libs.mpAndroidCharts, - - Libs.telemetry, - Libs.timber + libs.e.elib, + + libs.androidx.core.ktx, + libs.androidx.appcompat, + libs.androidx.fragment.ktx, + libs.androidx.lifecycle.runtime, + libs.androidx.lifecycle.viewmodel, + libs.androidx.work.ktx, + libs.google.material, + + libs.androidx.navigation.fragment, + libs.androidx.navigation.ui, + + libs.retrofit, + libs.retrofit.scalars, + + libs.maplibre, + libs.mpandroidcharts, + + libs.e.telemetry, + libs.timber ) - debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1' + debugImplementation libs.leakcanary - testImplementation 'junit:junit:4.+' + testImplementation libs.junit } static def log(Object val) { -- cgit v1.2.1