I have 2 projects:
- A static libray
libSL.a
built with the NDK r9 andAndroid.mk
. - An Android Studio project containing:
WL.java
(a JNI wrapper aroundlibWL.so
).jniWL.h
andjni/WL.c
(libWL.so
's source code), which requirelibSL.a
.lib/libWL.so
.
How do I include libSL.a
into libWL.so
with Gradle's Native Binary support?