I combined TestFlight SDKusing Cocoapods with the following Podfile: https://gist.github.com/fabb/8841271
I do not want the TestFlight library to be linked in lines Release(build config, not target).
This article shows you how to remove a file libTestFlight.afrom a release assembly using a custom build setting EXCLUDED_SOURCE_FILE_NAMES.
Is there a way I can do this using Cocoapods too? Remember that Cocoapods associates libTestFlight.awith it libPods.a, so setting a custom build option in the target application program will not help.
An alternative idea would be to include only TestFlight SDKpod for my TestFlightReleasebuild configuration , but it seems this is not yet supported by Cocoapods.
source
share