0

I faced the problem the duplicate symbols for architecture arm64. I searched the "stackoverflow.com" and I did some ways. But, same situation.

First, I removed all files Users/dongki/Library/Developer/Xcode/DerivedData.
Second, removed Build Phases -> compile source. But, this is not good ways to solve my problem.


How can I deal with the error?

error screenshot

Dongki Bae
  • 25
  • 1
  • 7
  • Hi, Check the yellow highlighted location in your xcode. "F/Users/..../lib". It's taking reference from that location. Delete that, clean once, build again. – Ratnesh Shukla Aug 10 '17 at 11:29
  • what is the minimum required version set to in Xcode? – Akhilrajtr Aug 10 '17 at 11:48
  • @RatneshShukla Thanks a lot~ But, I resolved the problem soon. I wrote the solution by any chance who faced with similar my problem. Project -> Build Settings -> No Common Blocks -> Yes -> No. – Dongki Bae Aug 10 '17 at 12:01
  • @Akhilrajtr I'm happy to your answer. I solved the problem! Have a nice day~ – Dongki Bae Aug 10 '17 at 12:01

3 Answers3

0

Your problem is that you have classes that implement methods with the exact same name. You will need to refactor one of those methods. Seems you have a library HttpDefaultNetworkManager, which is in all errors. If you have access to it, you can add a prefix to all its methods so not the same names are used.

Hope this helps.

Ivan
  • 782
  • 11
  • 23
  • Thanks to your answer~!! But, I resolved the problem soon. I wrote the solution by any chance who faced with similar my problem. Project -> Build Settings -> No Common Blocks -> Yes -> No. – Dongki Bae Aug 10 '17 at 11:48
0

Go to Product -> Clean and re-run the project.

else Cmd+Shift+K to clean the project and run again.

Goto "Build settings" -> Target -> Set "Enable Bitcode" = NO.

If you like to see what exactly making error refer this link: https://stackoverflow.com/a/43801476/6606820

Kavin Kumar Arumugam
  • 1,792
  • 3
  • 28
  • 47
  • Thank you for your answer. But I resolved this problem. And my solution wrote the comment above. Thank you! – Dongki Bae Aug 10 '17 at 11:49
0

See ImagesPlease try to play with No Common Blocks. It works for me in PJSIP integration.

Ved Rauniyar
  • 1,539
  • 14
  • 21