We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0a51b0 commit d974ba3Copy full SHA for d974ba3
1 file changed
pythonforandroid/bootstraps/webview/build/src/org/kivy/android/PythonUtil.java
@@ -37,13 +37,19 @@ public static void loadLibraries(File filesDir) {
37
}
38
39
40
+ try {
41
+ System.loadLibrary("ffi");
42
+ }catch(UnsatisfiedLinkError e) {
43
+ }
44
+
45
46
try {
47
System.load(filesDirPath + "/lib/python2.7/lib-dynload/_io.so");
48
System.load(filesDirPath + "/lib/python2.7/lib-dynload/unicodedata.so");
49
} catch(UnsatisfiedLinkError e) {
50
Log.v(TAG, "Failed to load _io.so or unicodedata.so...but that's okay.");
51
-
52
53
54
// System.loadLibrary("ctypes");
55
System.load(filesDirPath + "/lib/python2.7/lib-dynload/_ctypes.so");
0 commit comments