LeOS-Genesis/orbotmanager/build.gradle

66 lines
1.6 KiB
Groovy
Raw Normal View History

2022-04-14 08:50:58 +02:00
apply plugin: 'com.android.library'
apply from: "../commons.gradle"
apply from : '../dependencies.gradle'
android {
ndkVersion '21.3.6528147'
sourceSets {
main {
jniLibs.srcDirs = ['./src/main/libs']
}
}
defaultConfig {
minSdkVersion 16
targetSdkVersion 32
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2022-08-20 14:51:54 +02:00
packagingOptions {
resources {
excludes += ['META-INF/AL2.0']
}
}
2022-04-14 08:50:58 +02:00
2022-08-20 14:51:54 +02:00
lint {
2022-04-14 08:50:58 +02:00
abortOnError true
2022-08-20 14:51:54 +02:00
checkReleaseBuilds false
disable 'InvalidPackage'
2022-04-14 08:50:58 +02:00
htmlReport true
2022-08-20 14:51:54 +02:00
lintConfig file('../lint.xml')
2022-04-14 08:50:58 +02:00
textReport false
2022-08-20 14:51:54 +02:00
xmlReport false
2022-04-14 08:50:58 +02:00
}
}
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.6.10'
implementation 'androidx.work:work-runtime-ktx:2.8.0-alpha02'
api libs.guardian_jtorctl
implementation(
libs.ipt_proxy,
)
}