From e1d3106b7770b74bcab34aaac92ab77dc9cddf8b Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 12 Jun 2026 10:48:55 +0000 Subject: [PATCH] fix: remove non-existent google-cast-sdk-no-arc pod from Podfile The pod `google-cast-sdk-no-arc` does not exist on CocoaPods. The real variant is `google-cast-sdk-no-bluetooth`. Replaced with a commented-out line for manual opt-in, since the SDK also requires `use_frameworks! :linkage => :static` which conflicts with the default RN static library setup. CastModule.swift already compiles cleanly without the pod via `#if canImport(GoogleCast)` guards (isSupported returns false). https://claude.ai/code/session_01X52sah6aUu3ou26uJWHgzr --- app/ios/Podfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/ios/Podfile b/app/ios/Podfile index d71a0ef..0463f0a 100644 --- a/app/ios/Podfile +++ b/app/ios/Podfile @@ -18,8 +18,9 @@ target 'MovixApp' do config = use_native_modules! # Google Cast SDK (iOS Chromecast support). - # Version sans ARC — compatible avec react-native et les builds statiques. - pod 'google-cast-sdk-no-arc', '~> 4.8' + # Pour activer Chromecast, décommente la ligne ci-dessous et assure-toi + # d'avoir `use_frameworks! :linkage => :static` (requis par le SDK Cast). + # pod 'google-cast-sdk-no-bluetooth', '~> 4.8' use_react_native!( :path => config[:reactNativePath],