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

Commit 75c0a9e3 authored by Alan Viverette's avatar Alan Viverette Committed by Android Git Automerger
Browse files

am 3df164ce: am be2fb16c: am 8ae47443: am 8183ba88: am 0dfa4738: Merge "Pass...

am 3df164ce: am be2fb16c: am 8ae47443: am 8183ba88: am 0dfa4738: Merge "Pass explicit null theme when preloading drawables" into lmp-dev

* commit '3df164ce61a9f322e11ca610de5bbf945e0b6c4d':
  Pass explicit null theme when preloading drawables
parents b78013f2 e69028b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -415,7 +415,7 @@ public class ZygoteInit {
                Log.v(TAG, "Preloading resource #" + Integer.toHexString(id));
            }
            if (id != 0) {
                if (mResources.getDrawable(id) == null) {
                if (mResources.getDrawable(id, null) == null) {
                    throw new IllegalArgumentException(
                            "Unable to find preloaded drawable resource #0x"
                            + Integer.toHexString(id)