Sharekit test drive and pods

I have sharekit installed with cocoa pods, when I run using xcode and build on my application sharekit for iPhone, but when I archive and put in testflight, sharekit does not work. What could cause the problem?

+4
source share
1 answer

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.

0
source

Source: https://habr.com/ru/post/1500776/


All Articles