Assume I have an iPhone application whose Product Name is "My App" (with a space between words) in XCode build settings. In my info.plist, the Bundle identifier is specified as com.mycompany.${PRODUCT_NAME:rfc1034identifier}
In the resulting info.plist in the application bundle, the bundle identifier is shown as com.mycompany.My-App
. I need it to be com.mycompany.MyApp
. How do I change the Bundle Identifier setting so it would convert the product name the way I want?
ps.
If I change the ${PRODUCT_NAME:rfc1034identifier}
to ${PRODUCT_NAME:identifier}
, the resulting bundle identifier will be com.mycompany.My_App
. I just need to remove the space character in the product name completely in the result.
Thanks in advance..