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.
source
share