Status Update
Comments
ib...@google.com <ib...@google.com> #2
there are some image for help
ar...@meesho.com <ar...@meesho.com> #3
hello?
jo...@storytel.com <jo...@storytel.com> #4
But with the light Mr button instead?
This should be fixed in the library.
We are getting a lot of crashes for versions installed from the Play Store.
ib...@google.com <ib...@google.com> #5
Thanks for flagging that - it does seem like ic_mr_button_connected_30_light
(referenced drawable-hdpi
drawable-mdpi
drawable-xhdpi
drawable-xxhdpi
It seems to also be missing from drawable-xxxhdpi
More generally it seems that there are many more resource files in drawable-xhdpi
and drawable-xxhdpi
than in the other directories.
vi...@gmail.com <vi...@gmail.com> #6
vi...@eitv.com.br <vi...@eitv.com.br> #7
Have you had any updates on this issue?
We are currently experiencing critical issues with Google Play Store reviews, testing emulators are crashing, and the app is being rejected.
If not, do you have a workaround to avoid this issue until it is fixed?
aq...@google.com <aq...@google.com> #8
There seems to be a long list of resources that are present for a subset of the APIs. For saving some effort next time, used
find drawable-xhdpi/ -type f -print0 | while IFS= read -r -d '' file; do if [ ! -f "drawable-hdpi/${file##*/}" ]; then echo "$file"; fi; done
to generate the list of files in xhdpi but not in hdpi. List in internal ref: gpaste/4915206137577472.
We need to generate the missing ones and add them. Feel free to send a pull request our way.
as...@google.com <as...@google.com> #9
We should probably fix this issue by moving to vector drawables, rather than filling in all of the missing assets.
This is a good fixit candidate.
tk...@google.com <tk...@google.com> #10
Note that
Description
Version used: 20.1.0
Devices/Android versions reproduced on: Samsung devices with OS 13 (Galaxy S23 Ultra)
I can't reproduce this issue. But we are getting 1K+ crash logs in our Crashlytics console
attached stacktrace:
Caused by android.content.res.Resources$NotFoundException: File res/drawable/mr_button_light_static.xml from drawable resource ID #0x7f080259
at android.content.res.ResourcesImpl.loadDrawableForCookie(ResourcesImpl.java:1040)
at android.content.res.ResourcesImpl.loadDrawable(ResourcesImpl.java:724)
at android.content.res.Resources.loadDrawable(Resources.java:1072)
at android.content.res.Resources.getDrawableForDensity(Resources.java:1051)
at android.content.res.Resources.getDrawable(Resources.java:990)
at android.content.res.Resources.getDrawable(Resources.java:965)
at androidx.mediarouter.app.MediaRouteButton$RemoteIndicatorLoader.doInBackground(MediaRouteButton.java:826)
at androidx.mediarouter.app.MediaRouteButton$RemoteIndicatorLoader.doInBackground(MediaRouteButton.java:813)
at android.os.AsyncTask$3.call(AsyncTask.java:394)
at java.util.concurrent.FutureTask.run(FutureTask.java:264)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:305)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
at java.lang.Thread.run(Thread.java:1012)