From e6ea3d7c5d4e519c535fb7bd55cc07dad3b8de20 Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Wed, 17 Jun 2026 23:51:20 -0400 Subject: [PATCH] Link Expo project to EAS for TestFlight builds. Register the app with EAS, including the Live Activity widget extension and biometric permissions needed for production iOS builds. Co-authored-by: Cursor --- app.json | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/app.json b/app.json index 666eae8..6a1f64f 100644 --- a/app.json +++ b/app.json @@ -22,7 +22,11 @@ "backgroundImage": "./assets/images/android-icon-background.png", "monochromeImage": "./assets/images/android-icon-monochrome.png" }, - "predictiveBackGestureEnabled": false + "predictiveBackGestureEnabled": false, + "permissions": [ + "android.permission.USE_BIOMETRIC", + "android.permission.USE_FINGERPRINT" + ] }, "web": { "bundler": "metro", @@ -61,7 +65,28 @@ "extra": { "router": { "origin": false + }, + "eas": { + "build": { + "experimental": { + "ios": { + "appExtensions": [ + { + "targetName": "ExpoWidgetsTarget", + "bundleIdentifier": "com.beenvoice.app.ExpoWidgetsTarget", + "entitlements": { + "com.apple.security.application-groups": [ + "group.com.beenvoice.app" + ] + } + } + ] + } + } + }, + "projectId": "cdc31bf6-9c8d-49cd-aa28-7f56cbffd7d2" } - } + }, + "owner": "soconnor0919" } }