Sharekit testflight and pods

161 views Asked by At

I have a sharekit installed with cocoa pods , when I run using xcode and build on my iPhone sharekit works, but when I archive and put to testflight sharekit doesn't work. What can cause the problem??

1

There are 1 answers

0
Aerows On

I had the same problem as in my application would build and run on the simulator, but the .ipa was rejected by the Appstore. Apparently my archive was rejected due to 'Unsupported Architectures'.

What solved my issue was the following:

  • Added all ShareKit .bundle dependencies as separate pods.

e.g.

pod 'LiveSDK' pod 'google-plus-ios-sdk'

  • Followed this article by Daniel Kennett to remove unwanted architectures.

Hope this helps.