dpogue opened a new issue, #1545: URL: https://github.com/apache/cordova-ios/issues/1545
# Feature Request ## Motivation Behind Feature <!-- Why should this feature be implemented? What problem does it solve? --> iOS/macOS/visionOS/Xcode 26 support a new icon format that uses vector drawing and effect layers to composite an icon dynamically for different modes and scales. Cordova should (when building with Xcode 26) support providing an app icon in that new format. ## Feature Description <!-- Describe your feature request in detail Please provide any code examples or screenshots of what this feature would look like Are there any drawbacks? Will this break anything for existing users? --> If an `<icon>` tag is defined in config.xml whose `src` attribute has an extension of `.icon` and a **folder** exists at that path, it should be copied in to the platform App folder and added to the Xcode project.pbxproj file as a resource (essentially, treat it the same as `<resource-file>` but with a hardcoded target path of `AppIcon.icon`) ### Implementation ```xml <icon src="res/icon/ios/IconComposerFile.icon" /> ``` is effectively the same as ```xml <resource-file src="res/icon/ios/IconComposerFile.icon" target="../AppIcon.icon" /> ``` ## Alternatives or Workarounds <!-- Describe alternatives or workarounds you are currently using Are there ways to do this with existing functionality? --> Make people use `<resource-file>` directly, which seems less than ideal since this is likely to be a common use case. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
