mirror of
https://github.com/movixcorp/MovixOpenSource.git
synced 2026-08-04 04:46:08 +00:00
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:
parent
1d12f98717
commit
e1d3106b77
1 changed files with 3 additions and 2 deletions
|
|
@ -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],
|
||||
|
|
|
|||
Loading…
Reference in a new issue