to load my app icon as a drawable and display it with compose. But because of this, most of my previews fail to render because previews doesn't support the use of Android packagemanager.
t
Tgo1014
09/14/2023, 8:45 AM
You can just wrap this around a
if (isPreview)
and display some dummy icon when it’s a preview. That’s what I do for my launcher application for example.