Question

I can build and run my app on my device, but when I tried to build archive, I got many errors. The errors are about my 3rd library - google protobuf. It showed that #error Host architecture was not detected as supported by protobuf. But what is the difference between archieve and normal build?? After all, I built successfully and ran my app on the device when I choose product=>run (cmd+R).

Was it helpful?

Solution

When you build to run, Xcode usually builds for the active architecture only. When you archive it builds all the architectures specified by the intersection of the Build Settings "Architectures and Valid Architectures".

So it's likely that Xcode is trying to build for some architecture that isn't supported by your protobuf library, e.g. Arm64.

OTHER TIPS

For me the problem was that the scheme for "Archive" was different than the scheme for "Run". When i switched "Archive" to use DEBUG instead of RELEASE it worked.

You can see reasons for failure in Report Navigator present in Navigator window.

Menu -> View -> Navigator -> Hide/Show Navigator

Extra icon will appear/disappear next to Breakpoint icon after Hide/Show Navigator

Open Report Navigator by pressing last button present on list of buttons in Navigator window.

Here you can view reasons either By Group or By Time.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top