[Android] Choose appropriate ABI when running depending on target device #409
Labels
lang: c++
C++ rules integration
P4
This is either out of scope or we don't have bandwidth to review a PR. (No assignee)
product: Android Studio
Android Studio plugin
type: feature request
For Android applications with native dependencies (
cc_library
etc), compiling each architecture can be quite expensive (arm64-v8a
for device andx86_64
for simulator).Our current workflow either requires us to specify
--fat_apk_cpus=arm64-v8a,x86_64
ahead of time and spend twice as long to build, or go in and change the configuration before each build.Would it be possible to behave more like Xcode's 'build only active architecture' where the target architecture is derived from the device to be run on?
The text was updated successfully, but these errors were encountered: