i want to build a library in android with file inside the classes.jar inside AAR
public class JNI {
static {
try {
NativeUtil.loadLibraryFromJar("/jni/lib-jni.so");
} catch (IOException e1) {
e1.printStackTrace();
}
}
public static native String getPassword();
}
the nativeUtil from AdamHeinrich
how do i put the file inside JAR? thanks