How to rebuild development pod changes?

后端 未结 8 722
别那么骄傲
别那么骄傲 2021-01-30 04:09

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

8条回答
  •  暖寄归人
    2021-01-30 04:39

    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
    

提交回复
热议问题