There are several schemes in my project, for each scheme there is an Icon image file in the Images.xcassets
folder, like this:
AppIcon-DEV
AppIcon-QA
AppIcon-PROD
In order to show the right Icon along with a specific scheme, we need to modify the Asset Catalog in Build Settings like this:
Asset Catalog App Icon Set Name
DEV AppIcon-DEV
QA AppIcon-QA
PROD AppIcon-PROD
However the problem is, after archiving the project the name of the Icon image would be like "AppIcon-DEV", which can not be accepted by the client.
So my question is: is there any way that can automatically truncate the Icon name "AppIcon-DEV" to "AppIcon"?