diff options
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 49 |
1 files changed, 24 insertions, 25 deletions
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) { |