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

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

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

* commit '8183ba888f70ecf34adc7f02389f86f7c78a0aef':
  Pass explicit null theme when preloading drawables
parents 6ddf9aa8 d14f290d
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)