Ionic 3 - xcode error with cocoapods

后端 未结 3 1938
北海茫月
北海茫月 2021-02-04 00:32

I try to build an ionic 3 app with push notification and I have some problem with iOS deployment.

I have this 3 error in xcode :

diff: /Podfile.lock: N         


        
相关标签:
3条回答
  • 2021-02-04 01:01

    Please check the path of the xcode project

    project 'MyProject.xcodeproj'

    Does your podfile and the 'MyProject.xcodeproj' are located on the same directory ? If so you can try removing the ligne above from your podfile

    0 讨论(0)
  • 2021-02-04 01:03

    Open up terminal and run

    pod deintegrate
    

    This will remove all connections of pods and your project.

    Then you can run

    pod install
    
    0 讨论(0)
  • 2021-02-04 01:19

    Try

    pod repo update
    pod install
    
    0 讨论(0)
提交回复
热议问题