/PodBuilder-build_settings_overrides-bug

Minimal reproduction repository to demonstrate that the build_settings_overrides are not working with pod_builder.

Primary LanguageRuby

Minimal reproduction repository to demonstrate that the build_settings_overrides are not working with pod_builder.

How to reproduce the bug

Please run:

pod_builder build_all
open helloworld.xcworkspace/

Now look at the Pods build settings in XCode. You'll see that they don't match the build_settings_overrides in PodBuilder/PodBuilder.json:

"build_settings_overrides": {
    "SBTUITestTunnelClient": {
        "ENABLE_BITCODE": "NO"
    },
    "AWSAppSync": {
        "ENABLE_BITCODE": "NO",
        "IPHONEOS_DEPLOYMENT_TARGET": "10.0"
    },
    "AWSCore": {
        "ENABLE_BITCODE": "NO"
    }
}

The Bitcode is enabled for AWSAppSync The Bitcode is enabled for AWSCore