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

Commit c8b01295 authored by Brian Carlstrom's avatar Brian Carlstrom Committed by Android Git Automerger
Browse files

am 60999fcb: Merge "Treat UnsatisfiedLinkError as non-fatal" into klp-dev

* commit '60999fcb':
  Treat UnsatisfiedLinkError as non-fatal
parents fe803958 60999fcb
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -301,6 +301,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) {