Xcode Archive & Export for iOS v4.5.0

The “Build settings (xcconfig)” (xcconfig_content) input can now be a path to a existing .xcconfig file. Previously it could have been only the contents.

If is empty, no setting is changed. This is required when the -xcconfig additional option is used.

When xcconfig_content is set it can be either:

  1. Existing .xcconfig file path.
    Example:

    ./ios-sample/ios-sample/Configurations/Dev.xcconfig

  2. The contents of a newly created temporary .xcconfig file. (This is the default.)
    Build settings must be separated by newline character (\n).
    Example:

       COMPILER_INDEX_STORE_ENABLE = NO
       ONLY_ACTIVE_ARCH[config=Debug][sdk=*][arch=*] = YES
    
    
    

This topic was automatically closed after 90 days. New replies are no longer allowed.