LeOS-Genesis/orbotOld/build.gradle

68 lines
1.6 KiB
Groovy
Raw Normal View History

2021-02-25 15:26:43 +01:00
apply plugin: 'com.android.library'
android {
compileSdkVersion 30
2021-03-06 19:55:24 +01:00
buildToolsVersion '30.0.3'
ndkVersion '21.3.6528147'
2021-02-25 15:26:43 +01:00
sourceSets {
main {
jniLibs.srcDirs = ['./src/main/libs']
}
}
defaultConfig {
2021-03-06 19:55:24 +01:00
minSdkVersion 16
2021-02-25 15:26:43 +01:00
targetSdkVersion 30
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
aaptOptions {
cruncherEnabled = false
}
lintOptions {
2021-03-06 19:55:24 +01:00
checkReleaseBuilds false
abortOnError true
htmlReport true
xmlReport false
textReport false
2021-02-25 15:26:43 +01:00
2021-03-06 19:55:24 +01:00
lintConfig file("../lint.xml")
2021-02-25 15:26:43 +01:00
}
}
dependencies {
2021-03-06 19:55:24 +01:00
implementation 'org.torproject:tor-android-binary:0.4.4.6'
2021-02-25 15:26:43 +01:00
2021-03-06 19:55:24 +01:00
/**
implementation 'info.pluggabletransports.aptds:apt-dispatch-library:1.0.9'
implementation 'info.pluggabletransports.aptds:apt-meek-obfs4-legacy:1.0.9'
**/
2021-02-25 15:26:43 +01:00
implementation 'info.pluggabletransports.aptds:jsocksAndroid:1.0.4'
implementation 'com.jaredrummler:android-shell:1.0.0'
2021-03-06 19:55:24 +01:00
//implementation fileTree(dir: 'libs', include: ['.so','.aar'])
implementation 'androidx.core:core:1.3.2'
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
2021-02-25 15:26:43 +01:00
testImplementation 'junit:junit:4.13.1'
implementation 'com.offbynull.portmapper:portmapper:2.0.5'
implementation 'info.guardianproject:jtorctl:0.4'
2021-03-06 19:55:24 +01:00
implementation 'com.github.tladesignz:IPtProxy:0.5.2'
}