forked from organicmaps/organicmaps
[android] Added x86_64 arch for Chromebooks
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
eaf4f583d0
commit
bdafd2f8da
1 changed files with 5 additions and 3 deletions
|
@ -317,10 +317,14 @@ android {
|
|||
if (project.hasProperty('x86')) {
|
||||
abiFilters.add('x86')
|
||||
}
|
||||
if (project.hasProperty('x86_64') || project.hasProperty('x64')) {
|
||||
abiFilters.add('x86_64')
|
||||
}
|
||||
if (abiFilters.isEmpty()) {
|
||||
abiFilters.add('armeabi-v7a')
|
||||
abiFilters.add('arm64-v8a')
|
||||
abiFilters.add('x86') // for emulator
|
||||
// For the emulator, chromebooks and some Intel Atom devices.
|
||||
abiFilters.add('x86_64')
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -340,7 +344,6 @@ android {
|
|||
resValue 'string', 'app_name', project.ext.appName
|
||||
ndk {
|
||||
debugSymbolLevel 'SYMBOL_TABLE'
|
||||
abiFilters 'armeabi-v7a', 'arm64-v8a'
|
||||
}
|
||||
if (googleFirebaseServicesEnabled) {
|
||||
firebaseCrashlytics {
|
||||
|
@ -358,7 +361,6 @@ android {
|
|||
resValue 'string', 'app_name', project.ext.appName + ' ' + '(Beta)'
|
||||
ndk {
|
||||
debugSymbolLevel 'SYMBOL_TABLE'
|
||||
abiFilters 'armeabi-v7a', 'arm64-v8a'
|
||||
}
|
||||
if (googleFirebaseServicesEnabled) {
|
||||
firebaseCrashlytics {
|
||||
|
|
Loading…
Add table
Reference in a new issue