Treat UnsatisfiedLinkError as non-fatal

Bug: 11466297
Change-Id: I12be43564da37290b3ee52b1858e44f2229711d9
This commit is contained in:
Brian Carlstrom
2013-11-03 22:47:11 -08:00
parent 8ac67e6281
commit e92f19e58c

View File

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