Where does Xcode store $ {PRODUCT_NAME} on the file system?

Referring to this question , where was asked where to find $ {PRODUCT_NAME} in the Xcode code itself, I would like to know where (so in which file) does Xcode store the value of $ {PRODUCT_NAME} in the file system?

I want to write a build script that can automatically access this variable and change the name of the product without using Xcode.

+4
source share
2 answers

This is in MyProject.xcodeproj / project.pbxproj.

, , , , PRODUCT_NAME, , PRODUCT_NAME. , , , - .xcconfig, pbxproj, NextStep.

+4

Xcode 9.0 a > .

, .

+1

Source: https://habr.com/ru/post/1533768/


All Articles