Hammad Akram
09/25/2023, 7:09 AMorg.jetbrains.compose.components:components-resources
to load icons from a common source set. I am fetching the resource using
Image(
painter = painterResource("drawable/ic_logo.xml"),
contentDescription = null
)
The problem is that I am able to load the icons on desktop app but on Android I am getting this error
org.jetbrains.compose.resources.MissingResourceException: Missing resource with path: drawable/ic_logo.xml
Does anyone have the same issue?Qamar A. Safadi
09/25/2023, 7:18 AMHammad Akram
09/25/2023, 7:37 AM