commit 0e33a6524271d22fdccf04445d94a9c79b4f6688 Author: n8fr8 nathan@guardianproject.info Date: Wed Nov 11 12:18:15 2020 -0500
add IPtProxy as aar for now --- orbotservice/build.gradle | 12 +++++++++++- orbotservice/libs/IPtProxy.aar | Bin 0 -> 29425327 bytes 2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/orbotservice/build.gradle b/orbotservice/build.gradle index 39b23809..106e3a32 100644 --- a/orbotservice/build.gradle +++ b/orbotservice/build.gradle @@ -38,6 +38,13 @@ android { exclude 'assets/arm/obfs4proxy' //this is redundant }
+ repositories { + flatDir { + dir 'libs' + } + } + + }
dependencies { @@ -49,7 +56,7 @@ dependencies { implementation 'info.pluggabletransports.aptds:jsocksAndroid:1.0.4'
implementation 'com.jaredrummler:android-shell:1.0.0' - implementation fileTree(dir: 'libs', include: ['.so']) + implementation fileTree(dir: 'libs', include: ['.so','.aar']) implementation 'androidx.core:core:1.3.2' implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0' testImplementation 'junit:junit:4.13' @@ -58,4 +65,7 @@ dependencies {
implementation 'info.guardianproject:jtorctl:0.4'
+ /*********** IPtProxy: https://github.com/tladesignz/IPtProxy **********/ + implementation(name: 'IPtProxy', ext: 'aar') + } diff --git a/orbotservice/libs/IPtProxy.aar b/orbotservice/libs/IPtProxy.aar new file mode 100644 index 00000000..ed76d5fb Binary files /dev/null and b/orbotservice/libs/IPtProxy.aar differ
tor-commits@lists.torproject.org