commit 377fd63cc3500b285d227df595e3c801bb468152 Author: n8fr8 nathan@guardianproject.info Date: Fri May 7 14:47:15 2021 -0400
remove gpmaven repo, get jsockAndroid directly via jitpack.io --- build.gradle | 16 ++-------------- orbotservice/build.gradle | 3 +-- 2 files changed, 3 insertions(+), 16 deletions(-)
diff --git a/build.gradle b/build.gradle index e840c979..357a92ba 100644 --- a/build.gradle +++ b/build.gradle @@ -1,21 +1,15 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { - kotlin_version = '1.4.21' + kotlin_version = '1.4.32' } repositories { mavenCentral() google() maven { url 'https://jitpack.io' } - maven { - url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" - content { - includeGroup('info.pluggabletransports.aptds') - } - } } dependencies { - classpath 'com.android.tools.build:gradle:4.2.0-rc01' + classpath 'com.android.tools.build:gradle:4.2.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } @@ -25,11 +19,5 @@ allprojects { mavenCentral() google() maven { url 'https://jitpack.io' } - maven { - url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" - content { - includeGroup('info.pluggabletransports.aptds') - } - } } } diff --git a/orbotservice/build.gradle b/orbotservice/build.gradle index c2704caa..67141aca 100644 --- a/orbotservice/build.gradle +++ b/orbotservice/build.gradle @@ -48,8 +48,7 @@ android {
dependencies { implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0' - - implementation 'info.pluggabletransports.aptds:jsocksAndroid:1.0.4' + implementation 'com.gitlab.guardianproject:jsocksandroid:1.0.4'
implementation 'com.jaredrummler:android-shell:1.0.0' //implementation fileTree(dir: 'libs', include: ['.so','.aar'])
tor-commits@lists.torproject.org