Don't include non-PIE binaries in APK.

This shouldn't be merged before raising the minimum
API version to 16.
This commit is contained in:
akwizgran
2019-10-14 15:49:37 +01:00
parent 2e37619357
commit 7a0d990f0b

View File

@@ -59,6 +59,8 @@ task unpackTorBinaries {
copy {
from configurations.tor.collect { zipTree(it) }
into torBinariesDir
// TODO: Remove after next Tor upgrade, which won't include non-PIE binaries
include 'geoip.zip', '*_pie.zip'
}
}
dependsOn cleanTorBinaries