LeOS-Genesis/orbotmanager/build.gradle

62 lines
1.5 KiB
Groovy
Raw Normal View History

2020-01-24 16:23:31 +01:00
apply plugin: 'com.android.library'
android {
2021-05-05 15:37:08 +02:00
compileSdkVersion 30
buildToolsVersion '30.0.3'
ndkVersion '21.4.7075529'
2021-05-10 17:37:53 +02:00
defaultConfig {
minSdkVersion 21
targetSdkVersion 30
}
2020-01-24 16:23:31 +01:00
sourceSets {
main {
jniLibs.srcDirs = ['./src/main/libs']
}
}
2020-10-05 13:12:00 +02:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
2020-01-24 16:23:31 +01:00
}
buildTypes {
release {
2021-05-10 17:37:53 +02:00
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2020-01-24 16:23:31 +01:00
}
}
aaptOptions {
cruncherEnabled = false
}
lintOptions {
2021-05-05 10:52:35 +02:00
abortOnError false
}
2020-01-24 16:23:31 +01:00
2021-05-05 10:52:35 +02:00
packagingOptions {
exclude 'assets/arm/obfs4proxy' //this is redundant
2020-01-24 16:23:31 +01:00
}
}
dependencies {
2021-05-05 10:52:35 +02:00
2021-05-10 17:37:53 +02:00
implementation 'org.torproject:tor-android-binary:0.4.4.6'
2021-05-05 10:52:35 +02:00
2021-04-23 14:13:50 +02:00
implementation 'info.pluggabletransports.aptds:apt-dispatch-library:1.0.9'
implementation 'info.pluggabletransports.aptds:apt-meek-obfs4-legacy:1.0.9'
2020-01-24 16:23:31 +01:00
implementation 'info.pluggabletransports.aptds:jsocksAndroid:1.0.4'
2021-05-05 10:52:35 +02:00
2020-01-24 16:23:31 +01:00
implementation 'com.jaredrummler:android-shell:1.0.0'
2021-05-05 10:52:35 +02:00
implementation fileTree(dir: 'libs', include: ['.so'])
implementation 'androidx.core:core:1.3.2'
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
2021-05-10 17:37:53 +02:00
testImplementation 'junit:junit:4.13.2'
2021-05-05 10:52:35 +02:00
2020-01-24 16:23:31 +01:00
implementation 'com.offbynull.portmapper:portmapper:2.0.5'
2021-05-05 10:52:35 +02:00
2020-10-05 13:12:00 +02:00
implementation 'info.guardianproject:jtorctl:0.4'
2021-05-05 10:52:35 +02:00
2021-03-06 19:55:24 +01:00
}