Closed Dushistov closed 1 year ago
…LE_IDENTIFIER
xcodebuild generates warning during build for iOS: User-supplied CFBundleIdentifier value 'com.application' in the Info.plist must be the same as the PRODUCT_BUNDLE_IDENTIFIER build setting value ''
To fix it I need to use such Info.plist:
<key>CFBundleIdentifier</key> <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
But PRODUCT_BUNDLE_IDENTIFIER is not sett by default, so this is fix for this.
PRODUCT_BUNDLE_IDENTIFIER
Thanks!
…LE_IDENTIFIER
xcodebuild generates warning during build for iOS: User-supplied CFBundleIdentifier value 'com.application' in the Info.plist must be the same as the PRODUCT_BUNDLE_IDENTIFIER build setting value ''
To fix it I need to use such Info.plist:
But
PRODUCT_BUNDLE_IDENTIFIER
is not sett by default, so this is fix for this.