Reputation: 65
I have an info.plist file with variables inside, such as ${PRODUCT_NAME} or ${EXECUTABLE_NAME}.
Where does there variables reference to?
And how do I know these variables will be converted into what string by Xcode?
Upvotes: 0
Views: 3546
Reputation: 3361
Here is the answer,
$(PRODUCT_BUNDLE_IDENTIFIER) and $(PRODUCT_NAME) comes from,
And ${EXECUTABLE_NAME} is concatenation of:
$EXECUTABLE_PREFIX, $PRODUCT_NAME and $EXECUTABLE_SUFFIX.
All are in Build Settings.
Upvotes: 2