Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,25 @@ To enable the Sign In with Apple capability in your app, set the ios.usesAppleSi

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

If using EAS build:

Install the `expo-apple-authentication` package

```bash
npx expo install expo-apple-authentication
```

And add it to your `app.json`

```javascript
{
"expo": {
"plugins": ["expo-apple-authentication"]
}
}
```
This ensures the correct iOS entitlement is added when building with EAS.

## Usage

Below are simple steps to help you get up and running. The implementation differs between iOS an Android, so if you're having trouble, be sure to look through the docs. Please skip and head to the full code examples noted below if you prefer to see a more complete implementation:
Expand Down
Loading