mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
specify ABI per-debug/release: no x86 for release
This is as it was before I updated my invocation of NDK recently.
This commit is contained in:
parent
674b9dbccf
commit
0904a5299e
1 changed files with 7 additions and 0 deletions
|
@ -223,6 +223,9 @@ android {
|
|||
externalNativeBuild {
|
||||
ndkBuild.arguments += ['BUILD_TARGET=release']
|
||||
}
|
||||
ndk {
|
||||
abiFilters 'armeabi-v7a', 'arm64-v8a'
|
||||
}
|
||||
}
|
||||
debug {
|
||||
debuggable true
|
||||
|
@ -238,6 +241,10 @@ android {
|
|||
arguments += ['BUILD_TARGET=debug']
|
||||
}
|
||||
}
|
||||
|
||||
ndk {
|
||||
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue