Paul McNally
Paul McNally

Reputation: 33

iOS fat static library & submission

I have an iOS fat static library (iphoneos & iphonesimulator), if I was to use this during an app submission would it fail on the grounds that the binary includes iphonesimulator code?

Upvotes: 2

Views: 248

Answers (1)

Nicolas Hognon
Nicolas Hognon

Reputation: 326

I think there is no problem. When you link your app for device it simply embed the code for the architecture your are using. So your app compiled for device does not embed code for simulator.

Upvotes: 1

Related Questions