I set below two parameters in the Config.xcconfig file to extract appDisplayName and bundle Identifier from the configuration file. I made my code in the xcconfig file as follows:
appDisplayName=myapp appIdentifier=org.prince.myapp
Set the info.plist in the app file as
Bundle identifier = ${appIdentifier} Bundle display name =${appDisplayName}
add it to the project under the configurations.
It works fine, as I gave myapp as the display name, which it shows in the simulator / device as it is.
Let's get down to business. I want to know if there is a way to change the value of the PRODUCT_NAME variable. I set PRODUCT_NAME=custom in the configuration file, but this does not seem to work.

source share