Reputation: 25
I'm having the problem that, whenever I want to archive my iPad App for AdHoc Apps I m getting "Verify that your build process has compiled binaries and copied in bundle resources".
So it also complains that the archive process can't find anything to sign with.
Can someone help?
Upvotes: 2
Views: 2528
Reputation: 1051
If you are using Xcode 12
, make sure arm64
architecture is included:
In Xcode 12, make sure arm64 architecture is included:
In your Target -> Build Settings search for:
VALID_ARCHS
and make sure arm64
is included.Excluded Architectures
and make sure arm64
is NOT mentioned there.Upvotes: 2
Reputation: 27448
From project navigator
select your project and then goes to build phases
under the target and check that is there your every classes, storyboards, assets or frameworks are there in compile sources,copy bundle resource, link binaries with library,
.
Check below screenshot,
your compile sources
should have your all classes.
Upvotes: 0