Running Ionic 3 app on iPhone throws error: 2 duplicate symbols for architecture arm64

后端 未结 5 2295
太阳男子
太阳男子 2020-12-15 19:22

I am opening .xcworkspace of my Ionic 3 project and trying to run it on my device but I suddenly get the following error in Xcode:

Ld /Users/man         


        
5条回答
  •  遥遥无期
    2020-12-15 19:48

    Since cordova IOS 4.5 they are including cordova-plugin-console, which results in the plugin being duplicated.
    To fix just run:

    cordova plugin rm cordova-plugin-console
    

提交回复
热议问题