dmsurti / AssimpKit

A library (macOS, iOS) that converts the files supported by Assimp to Scene Kit scenes.
http://assimpkit.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
477 stars 54 forks source link

iTunes Connect Upload Failed with Error #93

Closed magicmikek closed 6 years ago

magicmikek commented 6 years ago

I added AssimpKit to my Xcode Project. But now I am not able to upload it to iTunes Connect anymore. These are the errors I am receiving.

screen shot 2017-12-13 at 23 07 10
dmsurti commented 6 years ago

This is not an AssimpKit problem but a carthage issue which can be fixed by adding a script that removes the unsupported architectures based on your project settings.

See this: http://ikennd.ac/blog/2015/02/stripping-unwanted-architectures-from-dynamic-libraries-in-xcode/ for the script.

magicmikek commented 6 years ago

I did not use Carthage. I manually added the Assimpkit Framework to my Project

dmsurti commented 6 years ago

I did not use Carthage

Ok, wrong assumption on my part.

I manually added the Assimpkit Framework to my Project

Not really recommended that you do so manually.

Nevertheless, AssimpKit.framework contains more architectures than your app and you need to strip out those and the script I referred to should help you strip those out, whether you install with carthage or manually. Hope this helps.

magicmikek commented 6 years ago

Do you think I can install Assimpkit with Carthage although I also use cocoa pods?

dmsurti commented 6 years ago

Yes, carthage and cocoa pods can be used in same project. PS: Even if you use carthage, you may/will still have to strip out the unsupported architectures.