1
0
Fork 0
mirror of https://github.com/M66B/NetGuard.git synced 2025-01-03 13:54:09 +00:00

2.166 release

Added 64-bit ABIs, removed deprecated armeabi
This commit is contained in:
M66B 2017-12-20 17:30:00 +01:00
parent c6d30af095
commit cf80f4a14e

View file

@ -6,10 +6,10 @@ android {
defaultConfig {
applicationId = "eu.faircode.netguard"
versionName = "2.165"
versionName = "2.166"
minSdkVersion 22
targetSdkVersion 27
versionCode = 2017121701
versionCode = 2017122001
archivesBaseName = "NetGuard-v$versionName"
externalNativeBuild {
@ -21,7 +21,8 @@ android {
}
ndk {
abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'mips'
// https://developer.android.com/ndk/guides/abis.html#sa
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64', 'mips', 'mips64'
}
}