4

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??

user1013369
  • 239
  • 1
  • 4
  • 9
  • Define "doesn't work' – coneybeare Sep 05 '13 at 17:22
  • noting happens when click but no errors or crash – user1013369 Sep 05 '13 at 18:09
  • 2
    I have the same archive problem with sharekit.bundle, it says "rsync error: some files could not be transferred..." and "ShareKit.bundle" failed: No such file or directory". I'm not sure if it's a Cocoapods' problem or Sharekit's. Have you figured out how to get this to work? – 0pcl Dec 09 '13 at 03:37

1 Answers1

0

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.

Aerows
  • 760
  • 6
  • 22