Removing Pod from project - xcode

前端 未结 3 1034
深忆病人
深忆病人 2021-02-04 04:04

I\'m trying to remove pod from my project. After i\'m deleting all the files and everything i\'m getting this messages

diff: /../Podfile.lock: No such file or di         


        
3条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-04 04:19

    remove the pod from the pod file then reinstall pods

    open terminal and type

    cd ~/projectDirectoryPath
    

    then type

    open -a Xcode Podfile
    

    this will open up the podfile

    delete the line

     pod 'Alamofire'
    

    then save the file (Alamofire is just an example)

    in the terminal type

    pod install
    

    and this should update the project and remove the unwanted pod file..

提交回复
热议问题