Malcolmn Roberts
Malcolmn Roberts

Reputation: 383

Azure Spatial Anchors unable to compile in Xcode

We have included Microsoft Azure Spatial Anchors into our Swift iOS app using cocoapods, the app compiles and runs normally when the target is an iOS Device.

When the target is a simulator the app does not build.

These are the error we receive

enter image description here

Is there a way to ignore this pod and the code when running on simulator or a fix we can include inside the Azure anchor SDK

Upvotes: 1

Views: 198

Answers (1)

Mark Schofield
Mark Schofield

Reputation: 31

Since ARKit doesn't support running in a simulator we hadn't included the x86_64 build in the pod. But it sounds like you've got a use case for it; it's entirely reasonable to want to validate other flows, and performing conditional exclusion of the ASA SDK surface area is going to be tricky. I'll add an item to our backlog to look at supporting ASA for simulators at build time.

Upvotes: 2

Related Questions