I hereby claim:
- I am tomredman on github.
- I am redman (https://keybase.io/redman) on keybase.
- I have a public key whose fingerprint is 5A15 04A9 5579 5F27 0E55 101B 5A11 0A7C 9728 3A1B
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
In a large, nested project where I prefer to control the workspace, I run pod install --no-integrate
on my root project. However, some pods don't include their required static libs correctly within their target's framework build phases.
For example, Pod-TestFlightSDK
's required libTestFlight.a
is excluded and removed every time I update my pods. Which required me to manually update the Pod target each time to include the static lib, which required me to automate it:
post_install do |installer_representation|
installer_representation.project.targets.each do |target|
if target.name == 'Pods-TestFlightSDK'
libFile = installer_representation.project.new_file('TestFlightSDK/libTestFlight.a')
end