On submitting an iOS app to the Apple App Store recently, I'm receiving the following error during processing of the build:
Invalid Bundle - Disallowed LLVM instrumentation. Do not submit apps with LLVM profiling instrumentation or coverage collection enabled. Turn off LLVM profiling or code coverage, rebuild your app and resubmit the app.
Searching Stack Overflow, the solution is to disable LLVM Code Coverage in all dependencies. I have done this for all open source Carthage dependencies, but I'm still getting the error message. I believe this is because the Fabric and Crashlytics dependencies in the project have LLVM Code Coverage enabled, but I cannot disable this as I only have access to the .framework files, and not the .xcodeproj files.
How can I change the LLVM Code Coverage build setting for Fabric / Crashlytics?