Permalink
Cannot retrieve contributors at this time
53 lines (45 sloc)
1.13 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| 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 30 | |
| } | |
| buildTypes { | |
| release { | |
| minifyEnabled false | |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
| } | |
| } | |
| lintOptions { | |
| checkReleaseBuilds false | |
| abortOnError true | |
| htmlReport true | |
| xmlReport false | |
| textReport false | |
| lintConfig file("../lint.xml") | |
| } | |
| packagingOptions { | |
| exclude 'META-INF/androidx.localbroadcastmanager_localbroadcastmanager.version' | |
| } | |
| } | |
| dependencies { | |
| api libs.guardian_jtorctl | |
| implementation( | |
| libs.android_shell, | |
| libs.androidx_core, | |
| libs.androidx_localbroadcast, | |
| libs.ipt_proxy, | |
| libs.guardian_jsocks, | |
| libs.guardian_geoip, | |
| libs.portmapper, | |
| libs.tor_android | |
| ) | |
| } |