I am using some pre-build android libraries, by sticking them in my jni folder and putting this in the Android.mk
# Add prebuilt libgdx
include $(CLEAR_VARS)
LOCAL_MODULE := libgdx
LOCAL_SRC_FILES := libgdx.so
include $(PREBUILT_SHARED_LIBRARY)
this copies the file to libs/armeabi
but this library also contains some similarly named pre-built .so files that are indended for libs/armeabi-v7a
So how would I write my .mk file to properly direct these files to their respective folders?