Kaydet (Commit) 0aad6244 authored tarafından Christian Lohmaier's avatar Christian Lohmaier

need to manuall load all native-libs on e.g. Jellybean

511ae02c introduced additional libraries
that are not merged to the single liblo-native-code.so
These need to be manually loaded in correct order. See
https://stackoverflow.com/questions/11058898/loading-shared-libs-that-depend-on-other-shared-libs
for details.

Change-Id: I34b279b69de8a0f8f58f8f980e5b3a7347cd0439
üst 36910b44
......@@ -107,6 +107,20 @@ class NativeLibLoader {
protected static synchronized void load() {
if (done)
return;
// TODO: those should likely be merged to lo-native-code as well
System.loadLibrary("nspr4");
System.loadLibrary("plds4");
System.loadLibrary("plc4");
System.loadLibrary("nssutil3");
System.loadLibrary("freebl3");
System.loadLibrary("sqlite3");
System.loadLibrary("softokn3");
System.loadLibrary("nss3");
System.loadLibrary("nssckbi");
System.loadLibrary("nssdbm3");
System.loadLibrary("smime3");
System.loadLibrary("ssl3");
System.loadLibrary("lo-native-code");
done = true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment