Merge "Treat UnsatisfiedLinkError as non-fatal"

This commit is contained in:
Brian Carlstrom
2013-11-04 18:06:36 +00:00
committed by Gerrit Code Review

View File

@@ -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) {