Error: Missing Google Plus Package Not Found

I integrate google plus with my ios project .....

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

The sign-page is perfectly visible, but for now I click on the sharing button that contains the code

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

There was a failure on failure and an error.

The application terminated due to the uncaught exception "NSInvalidArgumentException", reason: "Google Plus failover package was not found. Please include it in the project.

+4
source share
1 answer

I had the same problem

Make sure of the following

1> add GoogleOpenSource.framework and GooglePlus.framework

2 > GooglePlus.bundle

...

+8

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


All Articles