Skip to content

Commit

Permalink
docs(README, expo): Add steps to enable Apple Sign-in with Expo (#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebars authored Sep 13, 2024
1 parent 8702b44 commit ddc30aa
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,20 @@ yarn add @invertase/react-native-apple-authentication

You will not have to manually link this module as it supports React Native auto-linking.

**Note: if you using Expo, you may need to run `npx expo prebuild` first**
### Expo usage

To enable the Sign In with Apple capability in your app, set the ios.usesAppleSignIn property to true in your project's app config:
```json
{
"expo": {
"ios": {
"usesAppleSignIn": true
}
}
}
```

You may also need to run `npx expo prebuild`.

## Usage

Expand Down

0 comments on commit ddc30aa

Please sign in to comment.