I had the same problem as in my application that will create and run on the simulator, but .ipa
was rejected by the Appstore. Apparently, my archive was rejected due to "Unsupported architectures."
What solved my problem was the following:
- Added all ShareKit
.bundle
dependencies as separate modules.
eg.
pod 'LiveSDK' pod 'google-plus-ios-sdk'
- The following is Daniel Kennett's article on Removing Unwanted Architectures.
Hope this helps.
source share