Hi guys, I’ve discovered a significant problem with images on Android. So in Xcode I’ve some images organized in subfolders i.e. /Resources/Images/subfolder/sample_image. I show it using
Image("sample_image", bundle: .module)
and it works perfectly on iOS but in Android this image is unrecognized and not displayed. Of course it is working when I move it to /Resources/Images/sample_image.
I was able to reproduce this. In my case, I had an icon pack of several hundred svg icons. I had to move all the images up to the top level, so my .xcassets is pretty gross looking now.
Hi guys, I’ve discovered a significant problem with images on Android. So in Xcode I’ve some images organized in subfolders i.e. /Resources/Images/subfolder/sample_image. I show it using Image("sample_image", bundle: .module) and it works perfectly on iOS but in Android this image is unrecognized and not displayed. Of course it is working when I move it to /Resources/Images/sample_image.