Skip to content

Commit

Permalink
docs: update ios-guide.md (#1002)
Browse files Browse the repository at this point in the history
* Update ios-guide.md

I tried to clarify the wording for the `AppDelegate.m` method for the URL scheme. It's up to you to accept or not ;)

* Update ios-guide.md

Removing a wrong sentence.
  • Loading branch information
Texicitys authored Nov 7, 2021
1 parent f63f823 commit bcb62c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/ios-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Because only one `openURL` method can be defined, if you have multiple listeners

- Open `AppDelegate.m`
- Add an import: `#import <RNGoogleSignin/RNGoogleSignin.h>` (if this one will not work try `#import "RNGoogleSignin.h"`). If this file cannot be found, you need to modify your header search paths so Xcode can find headers of `react-native-google-signin`. For example, when using the non-cocoapods installation, make sure that `$(SRCROOT)/../node_modules/@react-native-google-signin/google-signin/ios` is included in your target's header search paths.
- Add a method to respond to the URL scheme (this is just an example of what the code can look like if you're using both `FBSDKApplicationDelegate` and `RNGoogleSignin`):
- Add a method to respond to the URL scheme. This is just an example of a method that you can add at the bottom of your file if you're using both `FBSDKApplicationDelegate` and `RNGoogleSignin` :

```objc
// AppDelegate.m
Expand Down

0 comments on commit bcb62c5

Please sign in to comment.