We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f83509 commit ad13bd5Copy full SHA for ad13bd5
core/java/com/android/internal/os/ZygoteInit.java
@@ -291,6 +291,8 @@ private static void preloadClasses() {
291
count++;
292
} catch (ClassNotFoundException e) {
293
Log.w(TAG, "Class not found for preloading: " + line);
294
+ } catch (UnsatisfiedLinkError e) {
295
+ Log.w(TAG, "Problem preloading " + line + ": " + e);
296
} catch (Throwable t) {
297
Log.e(TAG, "Error preloading " + line + ".", t);
298
if (t instanceof Error) {
0 commit comments