5bb178c479
Multi arch build in one go is need to support the new .aab packaging format. By default the users apps are built for all Android ABIs: arm64-v8a armeabi-v7a x86_64 x86 The user can pass ANDROID_ABIS to qmake to filter the ABIs during development, e.g. qmake ANDROID_ABIS="arm64-v8a armeabi-v7a" will build only for arm ABIs. [ChangeLog][Android] Android multi arch build in one go, needed to support the new .aab packaging format. Change-Id: I3a64caf9621c2a195863976a62a57cdf47e6e3b5 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
11 lines
282 B
Plaintext
11 lines
282 B
Plaintext
load(resolve_config)
|
|
|
|
!host_build:!single_arch:!java:android {
|
|
isEmpty(ANDROID_ABIS): ANDROID_ABIS = $$ALL_ANDROID_ABIS
|
|
|
|
ALL_ABIS = $$join(ANDROID_ABIS, _and_)
|
|
CONFIG += $$ALL_ABIS build_all
|
|
addExclusiveBuildsProper($$ALL_ABIS, $$ANDROID_ABIS)
|
|
unset(ALL_ABIS)
|
|
}
|