2022-02-12 11:16:57 +01:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2022-04-02 01:13:29 +02:00
|
|
|
compileSdkVersion 32
|
2022-02-12 11:16:57 +01:00
|
|
|
buildToolsVersion '30.0.3'
|
|
|
|
ndkVersion '21.3.6528147'
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
jniLibs.srcDirs = ['./src/main/libs']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 16
|
2022-04-02 01:13:29 +02:00
|
|
|
targetSdkVersion 32
|
2022-02-12 11:16:57 +01:00
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0'
|
|
|
|
implementation 'com.gitlab.guardianproject:jsocksandroid:1.0.4'
|
|
|
|
|
|
|
|
implementation 'com.jaredrummler:android-shell:1.0.0'
|
|
|
|
|
|
|
|
implementation 'androidx.core:core:1.7.0'
|
|
|
|
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
|
|
|
|
implementation 'com.offbynull.portmapper:portmapper:2.0.5'
|
|
|
|
|
|
|
|
implementation 'info.guardianproject:geoip:20191217'
|
|
|
|
|
|
|
|
api 'info.guardianproject:jtorctl:0.4.5.7'
|
|
|
|
implementation 'info.guardianproject:tor-android:0.4.5.9'
|
|
|
|
|
|
|
|
implementation 'com.github.tladesignz:IPtProxy:1.0.0'
|
2022-04-02 01:13:29 +02:00
|
|
|
implementation 'androidx.work:work-runtime-ktx:2.8.0-alpha01'
|
2022-02-12 11:16:57 +01:00
|
|
|
}
|