Skip to content

Commit

Permalink
Unlock the theoplayer core dependency to 6.12.1 and higher
Browse files Browse the repository at this point in the history
  • Loading branch information
wvanhaevre committed Mar 19, 2024
1 parent 785e375 commit 2a1f5f5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions ios/THEOplayerRCTDebug.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
let DEBUG = true

// Debug flag to monitor incoming Theoplayer events
let DEBUG_THEOPLAYER_EVENTS = DEBUG && false
let DEBUG_THEOPLAYER_EVENTS = DEBUG && true

// Debug flag to monitor eventhandler setup and breakdown
let DEBUG_EVENTHANDLER = DEBUG && false
Expand All @@ -31,7 +31,7 @@ let DEBUG_CAST_API = DEBUG && false
let DEBUG_PLAYER_API = DEBUG && false

// Debug flag to monitor Now Playing Info updates
let DEBUG_NOWINFO = DEBUG && false
let DEBUG_NOWINFO = DEBUG && true

// Debug flag to monitor Remote Commands updates
let DEBUG_REMOTECOMMANDS = DEBUG && false
Expand Down
10 changes: 5 additions & 5 deletions react-native-theoplayer.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,20 @@ Pod::Spec.new do |s|
}
else
puts "Using THEOplayer-core SDK"
s.dependency "THEOplayerSDK-core", "6.11"
s.dependency "THEOplayerSDK-core", "~> 6.11", "!= 6.12.0"
if theofeatures.include?("GOOGLE_IMA")
puts "Adding THEOplayer-Integration-GoogleIMA"
s.dependency "THEOplayer-Integration-GoogleIMA/Base", "6.11"
s.dependency "THEOplayer-Integration-GoogleIMA/Dependencies", "6.11"
s.dependency "THEOplayer-Integration-GoogleIMA/Base", "~> 6.11", "!= 6.12.0"
s.dependency "THEOplayer-Integration-GoogleIMA/Dependencies", "~> 6.11", "!= 6.12.0"
end
if theofeatures.include?("CHROMECAST")
puts "Adding THEOplayer-Integration-GoogleCast"
s.ios.dependency "THEOplayer-Integration-GoogleCast/Base", "6.11"
s.ios.dependency "THEOplayer-Integration-GoogleCast/Base", "~> 6.11", "!= 6.12.0"
s.ios.dependency "google-cast-sdk-dynamic-xcframework", "~> 4.8"
end
if theofeatures.include?("SIDELOADED_TEXTTRACKS")
puts "Adding THEOplayer-Connector-SideloadedSubtitle"
s.dependency "THEOplayer-Connector-SideloadedSubtitle", "6.11"
s.dependency "THEOplayer-Connector-SideloadedSubtitle", "~> 6.11", "!= 6.12.0"
end
end

Expand Down

0 comments on commit 2a1f5f5

Please sign in to comment.