am 60999fcb
: Merge "Treat UnsatisfiedLinkError as non-fatal" into klp-dev
* commit '60999fcb2ed251ec4e24eccf94b66e35b851b415': Treat UnsatisfiedLinkError as non-fatal
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user