Latest Google Plus iOS SDK 1.7.1 not supporting architecture x86_64

后端 未结 2 527
耶瑟儿~
耶瑟儿~ 2020-12-22 10:20

I have the latest Google Plus iOS SDK managed by cocoapods in my project.

pod \'google-plus-ios-sdk\' ~> \'1.7.1\' #(Also tried 1.5.1)

S

相关标签:
2条回答
  • 2020-12-22 10:29

    I looked at a completely new XCode Project and copied the other linker flags to my current project and it worked.

    You might need to add a list of binary libraries like here

    And set the other linker flags

    To $(inherited) -ObjC -l"c++" -l"icucore" -l"z" -framework "AVFoundation" -framework "Accelerate" -framework "CoreBluetooth" -framework "CoreData" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreText" -framework "GLKit" -framework "GoogleMaps" -framework "ImageIO" -framework "OpenGLES" -framework "QuartzCore" -framework "Security" -framework "SystemConfiguration"

    0 讨论(0)
  • 2020-12-22 10:40

    Uhm turn out I have GooglePlusManager in my test target. Remove it from the compile Sources fixed it.

    0 讨论(0)
提交回复
热议问题