Android : merging static libraries into single one
问题 I use Android NDK r8 to generate multiple static libraries with include $(BUILD_STATIC_LIBRARY) and I successfully get : lib1.a, lib2.a, lib3.a, etc. Now I would like to merge these static libraries into single one. I try do it with ar.exe from Android NDK : android-ndk-r8\toolchains\arm-linux-androideabi-4.4.3\prebuilt\windows\arm-linux-androideabi\bin\ar.exe r libALL.a lib1.a lib2.a lib3.a But when I use libAll.a into Android NDK makefile, it fails saying there is no index. How can I add