mhartington / cordova-config-utils

32 stars 5 forks source link

Add Support for Modifying Xcode Build Properties #4

Closed RangerRick closed 8 years ago

RangerRick commented 8 years ago

This PR adds a dependency on the 'xcode' npm module, which allows us to add build properties to the Xcode build after prepare, like setting ENABLE_BITCODE to 'NO'.

Example usage:

<platform name="ios">
    <config-file platform="ios" target="project.pbxproj">
      <build-property name="ENABLE_BITCODE" value="NO" />
    </config-file>
</platform>