Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ad13bd5c authored by Brian Carlstrom's avatar Brian Carlstrom
Browse files

Treat UnsatisfiedLinkError as non-fatal

Bug: 11466297

(cherry picked from commit e92f19e5)

Change-Id: I449474078b9f465f1da26a27bf96f9c35d2bb2fc
parent 1f835093
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -291,6 +291,8 @@ public class ZygoteInit {
                        count++;
                    } catch (ClassNotFoundException e) {
                        Log.w(TAG, "Class not found for preloading: " + line);
                    } catch (UnsatisfiedLinkError e) {
                        Log.w(TAG, "Problem preloading " + line + ": " + e);
                    } catch (Throwable t) {
                        Log.e(TAG, "Error preloading " + line + ".", t);
                        if (t instanceof Error) {