Enable 64-bit.

master
Alan Evans 2019-05-10 12:03:45 -03:00 committed by GitHub
parent f3c8b51520
commit 67704612df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -318,7 +318,7 @@ android {
buildConfigField "String[]", "LANGUAGES", "new String[]{\"" + autoResConfig().collect { s -> s.replace('-r', '_') }.join('", "') + '"}'
ndk {
abiFilters 'armeabi-v7a', 'x86'
abiFilters 'armeabi-v7a', 'x86', 'arm64-v8a', 'x86_64'
}
resConfigs autoResConfig()
@ -327,7 +327,7 @@ android {
abi {
enable true
reset()
include 'armeabi-v7a', 'x86'
include 'armeabi-v7a', 'x86', 'arm64-v8a', 'x86_64'
universalApk true
}
}