commit e2b013069fcbfda87b522868b3d5de2e2ac8ed2b Author: bim dsnake@protonmail.com Date: Fri Oct 16 17:15:37 2020 -0400
Use smaller androidx dependencies in orbotservice. specifically just use core for notifications, and another one for localbroadcastmanager --- orbotservice/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/orbotservice/build.gradle b/orbotservice/build.gradle index 019030ef..39b23809 100644 --- a/orbotservice/build.gradle +++ b/orbotservice/build.gradle @@ -42,8 +42,6 @@ android {
dependencies {
- implementation 'androidx.legacy:legacy-support-v4:1.0.0' - implementation 'org.torproject:tor-android-binary:0.4.3.6-actual'
implementation 'info.pluggabletransports.aptds:apt-dispatch-library:1.0.9' @@ -52,6 +50,8 @@ dependencies {
implementation 'com.jaredrummler:android-shell:1.0.0' implementation fileTree(dir: 'libs', include: ['.so']) + implementation 'androidx.core:core:1.3.2' + implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0' testImplementation 'junit:junit:4.13'
implementation 'com.offbynull.portmapper:portmapper:2.0.5'
tor-commits@lists.torproject.org