Is it possible to create a static (.a) library using ndk-build from several other static (.a) libraries.
For example, I have several libraries: lib1.a, lib2.a, lib3.a, and I need to create libmegalib.a lib
Using LOCAL_WHOLE_STATIC_LIBRARIES and enable $ (BUILD_STATIC_LIBRARY) dosn't help. It creates libmegalib.a lib, but contains "! <arch>" only the contents (8 bytes).
But I need libmegalib.a to contain all my libs: lib1.a, lib2.a, lib3.a
Artem source share