Testing 32 bit iOS app on iPhone 5s or 64 bit simulator

后端 未结 2 834
花落未央
花落未央 2021-02-03 14:46

I have an app that uses a third party library. There is a bug in the 64 bit version of the library so I had to revert to the 32 bit version of the framework. I would like to t

2条回答
  •  长发绾君心
    2021-02-03 15:11

    I have met the similar situation but the opposite side.I use Fastlane to get app screen capture, Fastlane tool only can run on simulators,but I found every time:

    Undefined symbol(s) for architecture i386
    

    This is because there is a .a library only support x86_64,So I tried to solve the problem according to the above answer.I changed Architectures to $(ARCHS_STANDARD_64_BIT).

    So I can run the project on the newer simulators with only 64 bit architecture!

提交回复
热议问题