From 177fbf931582f906ace68a9234e3c50fd974206b Mon Sep 17 00:00:00 2001 From: Louis <60443647+louishuddleston@users.noreply.github.com> Date: Sat, 16 Aug 2025 11:47:34 +0100 Subject: [PATCH] Update README.md --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index d7f77c23..3bedfec8 100644 --- a/README.md +++ b/README.md @@ -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: