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

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

am 0dfa4738: Merge "Pass explicit null theme when preloading drawables" into lmp-dev

* commit '0dfa4738018b93f576a3fceee2d351505983961f':
  Pass explicit null theme when preloading drawables
parents 5c3d18d1 e7868959
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -458,7 +458,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)