LeOS-Genesis/orbotmanager/build.gradle

68 lines
1.6 KiB
Groovy
Raw Normal View History

2020-01-24 16:23:31 +01:00
apply plugin: 'com.android.library'
android {
2021-08-01 11:47:13 +02:00
compileSdkVersion 31
2021-05-05 15:37:08 +02:00
buildToolsVersion '30.0.3'
2021-06-08 10:40:27 +02:00
ndkVersion '21.3.6528147'
2020-01-24 16:23:31 +01:00
sourceSets {
main {
jniLibs.srcDirs = ['./src/main/libs']
}
}
2021-06-08 10:40:27 +02:00
defaultConfig {
minSdkVersion 16
2021-08-01 11:47:13 +02:00
targetSdkVersion 31
2021-06-08 10:40:27 +02:00
}
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-06-08 10:40:27 +02:00
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2020-01-24 16:23:31 +01:00
}
}
aaptOptions {
cruncherEnabled = false
}
lintOptions {
2021-06-08 10:40:27 +02:00
checkReleaseBuilds false
abortOnError true
htmlReport true
xmlReport false
textReport false
lintConfig file("../lint.xml")
2021-05-05 10:52:35 +02:00
}
2020-01-24 16:23:31 +01:00
2021-05-05 10:52:35 +02:00
packagingOptions {
2021-06-08 10:40:27 +02:00
exclude 'META-INF/androidx.localbroadcastmanager_localbroadcastmanager.version'
2020-01-24 16:23:31 +01:00
}
}
dependencies {
2021-06-08 10:40:27 +02:00
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
implementation 'com.gitlab.guardianproject: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-06-08 10:40:27 +02:00
2021-07-07 20:42:42 +02:00
implementation 'androidx.core:core:1.6.0'
2021-05-05 10:52:35 +02:00
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
2021-06-08 10:40:27 +02:00
implementation 'info.guardianproject:geoip:20191217'
api 'info.guardianproject:jtorctl:0.4.5.7'
2021-08-01 11:47:13 +02:00
implementation 'info.guardianproject:tor-android:0.4.5.9'
2021-05-05 10:52:35 +02:00
2021-06-08 10:40:27 +02:00
implementation 'com.github.tladesignz:IPtProxy:1.0.0'
2021-03-06 19:55:24 +01:00
}