I am trying to compile my SDL2 project for android using QBS. I built SDL2 as dynamic library using NDK's ndk-build tool. But can't figure out how to make QBS (which I use in my project) include libSDL2.so to the resulting APK.
I have tried approach with FileTagger, mentioned in this question, but no luck:
FileTagger {
patterns: ["deps/SDL2/libs/armeabi-v7a/libSDL2.so"]
fileTags: ["android.nativelibrary"]
}