xcode 5.1: libCordova.a architecture problems

后端 未结 8 1326
说谎
说谎 2020-12-02 05:48

Yesterday (3/10/14) when iOS 7.1 was released I also upgraded to Xcode 5.1 and found that my PhoneGap/Cordova project would no longer compile to my iPhone 5s. I also upgrade

8条回答
  •  鱼传尺愫
    2020-12-02 06:45

    You just have to add the arm64 architecture on every statement and building setting, i mean, on your current project, and on the cordova project.

    On your project:

    • Architectures
    • Valid architectures

    on Cordova:

    • Architectures
    • debug
    • release
    • Any ios SDK

    AND THE MOST IMPORTANT

    -Valid architectures at cordova build settings

    This configuration generates a lot of warnings, but is just change the "%d" for "%ld" at all lines that the warning says.

提交回复
热议问题