0

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?

黃思綸
  • 65
  • 2
  • 9
  • this variables comes from build settings. 'Product Bundle Identifier', 'Product Name'. – KAR Oct 14 '16 at 10:40

1 Answers1

2

Here is the answer,

$(PRODUCT_BUNDLE_IDENTIFIER) and $(PRODUCT_NAME) comes from,

enter image description here

And ${EXECUTABLE_NAME} is concatenation of:

$EXECUTABLE_PREFIX, $PRODUCT_NAME and $EXECUTABLE_SUFFIX.

All are in Build Settings.

enter image description here

KAR
  • 3,303
  • 3
  • 27
  • 50