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
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!