From f8414194f09deccb6afe7574344a870840b89683 Mon Sep 17 00:00:00 2001 From: Gauvain Date: Fri, 29 May 2026 08:01:09 +0200 Subject: [PATCH] test(ios): drop useFrameworks:static (root of SwiftUICore + RNScreens link errors) useFrameworks:static is the common root of the iOS 26 link failures (SwiftUICore auto-link + the original RNScreens issue) and is broadly broken on SDK 55/56 (expo/expo #44487 etc.). It is NOT mandatory for react-native-google-cast (static Cast SDK works without it). Removing it so all pods build as static libs (the New Arch default). Verifying via CI; google-cast runtime needs device check. [unsigned: GPG unavailable] --- app.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app.json b/app.json index 3326f4e4a..6caffc47a 100644 --- a/app.json +++ b/app.json @@ -78,8 +78,7 @@ "expo-build-properties", { "ios": { - "deploymentTarget": "16.4", - "useFrameworks": "static" + "deploymentTarget": "16.4" }, "android": { "buildArchs": ["arm64-v8a", "x86_64", "armeabi-v7a"],