Hello Kim,
Thank you for reaching out.
iOS Asset Catalogs are currently unsupported in .NET MAUI single projects, as documented by Microsoft.
The recommended approach is to use Resources folder of your MAUI project.
For App Icons:
- Place your app icon in the
Resources/AppIcon/folder - Name it
appicon.png(or use the defaultappiconfg.svgfor vector-based icons) - Set the build action to
MauiIcon - MAUI will automatically generate all required icon sizes for iOS during build
For Images:
- Place images in
Resources/Images/folder - Set build action to
MauiImage - MAUI handles density-specific generation automatically
I hope this clarifies your issue.