ITMS-90535 Unable to publish iOS app with latest Google Signin SDK

IosXcode7Google Signin

Ios Problem Overview


Error ITMS-90535 : Unexpected CFBundleExecutable Key Google Sigin

I'm using xcode 7 GM seed and installed latest Google Signin SDK through cocoapods pod "Google/SignIn . I get the attached error when I try to publish my app to apple app store.

Help!!

Here are the detailed versions of Google SDK pods

`- Google/Core (1.0.7):

  • GoogleNetworkingUtilities (~> 1.0)
  • GoogleSymbolUtilities (~> 1.0)
  • GoogleUtilities (~> 1.0)
  • Google/SignIn (1.0.7):
  • Google/Core
  • GoogleSignIn (~> 2.0)
  • GoogleAppUtilities (1.0.0):
  • GoogleSymbolUtilities (~> 1.0)
  • GoogleAuthUtilities (1.0.1):
  • GoogleNetworkingUtilities (~> 1.0)
  • GoogleSymbolUtilities (~> 1.0)
  • GoogleNetworkingUtilities (1.0.0):
  • GoogleSymbolUtilities (~> 1.0)
  • GoogleSignIn (2.2.0):
  • GoogleAppUtilities (~> 1)
  • GoogleAuthUtilities (~> 1)
  • GoogleNetworkingUtilities (~> 1)`

Thank you.

Ios Solutions


Solution 1 - Ios

Find CFBundleExecutable key , remove this key from Google Signin SDK's info.plist. You can delete all other CFBundleExecutable if error occurs on multiple bundles

Solution 2 - Ios

Just to clarify the above correct answer. If you are accessing the info.plist from Xcode, you need to clear the Executable file field shown below.

enter image description here

There is one in the GoogleSignIn/Resources folder, and the other two are in GPPCore/Resources folder. (click the .bundle)

Solution 3 - Ios

I had to do this:

Delete 3 string values of 3 lines. info.plist from

1.GooglePlus.bunde -> Inside

2.GPPCommonSharedResources

3.GPPShareboxSharedResources

enter image description here enter image description here

Open GooglePlus.bundle enter image description here

Solution 4 - Ios

I am getting the same error with TapJoy Bundle Resources.

enter image description here

TapJoy is older version. So this problem is going to be fixed by either:

  1. Update TapJoy SDK
  2. Remove the string from Executable file of TapJoy's plist, not the app's plist just like user dstudeba suggested. In my case the String was TapJoyResources I removed that and worked perfect!

Note: that plist was located at TapJoy's framework files. This error is exactly the same as with this Google Signin SDK issue.

Here's what I did in detail: enter image description here

Solution 5 - Ios

I have suffered from same [error][1], above all answers really helped me. Want to share my experience.

1- I was getting the error [![enter image description here][2]][2]

Fixed with the help of above [answer][3]

> Find CFBundleExecutable key , remove this key from Google Signin SDK's info.plist. You can delete all other CFBundleExecutable if error occurs on multiple bundles

2- But after that, I was getting error

> Xcode App Submisson ERROR ITMS-90207: "Invalid Bundle

[![enter image description here][4]][4]

Fixed with the help of [answer][5]

> Please check your info.plist file and add below key if not

<string>${EXECUTABLE_NAME}</string> ````


  [1]: https://stackoverflow.com/questions/32622899/itms-90535-unable-to-publish-ios-app-with-latest-google-signin-sdk
  [2]: http://i.stack.imgur.com/htwqK.png
  [3]: https://stackoverflow.com/a/32645052/2114413
  [4]: http://i.stack.imgur.com/ez8gI.png
  [5]: https://stackoverflow.com/a/33435595/2114413

Solution 6 - Ios

We had this issue while uploading our build from jenkins slave. We managed to automate the process by adding this runs-script to pre-archive of our appstore scheme:

defaults delete "${PODS_ROOT}/google-plus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/GPPCommonSharedResources.bundle/Info.plist" CFBundleExecutable

defaults delete "${PODS_ROOT}/google-plus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/GPPShareboxSharedResources.bundle/Info.plist" CFBundleExecutable

defaults delete "${PODS_ROOT}/google-plus-ios-sdk/google-plus-ios-sdk-1.7.1/GooglePlus.bundle/Info.plist" CFBundleExecutable

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGuyView Question on Stackoverflow
Solution 1 - IosiHTCboyView Answer on Stackoverflow
Solution 2 - IosdstudebaView Answer on Stackoverflow
Solution 3 - IosDasogaView Answer on Stackoverflow
Solution 4 - IositzoView Answer on Stackoverflow
Solution 5 - IosAbdul RaufView Answer on Stackoverflow
Solution 6 - IosMaciej StramskiView Answer on Stackoverflow