My application uses native shared library (.so), I am loading it by calling System.loadLibrary(\"xxx\"). It loads fine and I can call the native methods.
System.loadLibrary(\"xxx\")
Use this code to list the shared native libraries that can be loaded from your app:
final File nativeLibraryDir = new File(getApplicationInfo().nativeLibraryDir); final String[] primaryNativeLibraries = nativeLibraryDir.list();