I have a development pod that I connect to the my app locally using :path => \'~/Projects/Swift/pod\'
. When I make changes inside the application code in that d
I tried accepted answer and it didnt work, then I added
install! 'cocoapods', :disable_input_output_paths => true
to podfile and it is working now.
use_frameworks!
install! 'cocoapods', :disable_input_output_paths => true
target 'TargetName' do
# ...
end
As a workaround I've been manually "cleaning" out my development pods.
Pods
project open Products
select the development pod framework(s)Hope that helps, and that Apple fixes this soon...
P.S. Will definitely be writing a simple script to do this.
Update 9/25/18
Also seems like sometimes I must delete the Intermediate build(s) as well.
Update 9/23/19
Looks like it was fixed in CocoaPods 1.8.0 (Wow, it been a whole year...)