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
This commit is contained in:
Claude 2026-06-12 10:48:55 +00:00
parent 1d12f98717
commit e1d3106b77
No known key found for this signature in database

View file

@ -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],