Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error : Google Plus fallback bundle could not be found

I am integrating google plus with my ios project.....

i include all steps for integration from https://developers.google.com/+/mobile/ios/sign-in

The sign page perfectly appar but while i click on share button which contain code

 - (IBAction)TestShareOnG:(id)sender {
      id<GPPNativeShareBuilder> shareBuilder = [[GPPShare sharedInstance] nativeShareDialog];
      [shareBuilder open];
    }

the appliction crash and error occur..

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Google Plus fallback bundle could not be found. Please include it in the project.'

like image 817
Dipen Desai Avatar asked Feb 14 '23 07:02

Dipen Desai


1 Answers

I was having same problem

Make sure following

1> add GoogleOpenSource.framework and GooglePlus.framework

2> add GooglePlus.bundle also

I was missing 2nd...

like image 116
Mihir Mehta Avatar answered Feb 16 '23 04:02

Mihir Mehta