Skip to content

Commit

Permalink
Merge branch 'maintenance/unlock-ios-version' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
wvanhaevre committed Mar 19, 2024
2 parents 785e375 + f377e27 commit c70b08e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.1.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased

- Updated ios sdk version to 6.12.1

## [3.10.0] - 24-03-15

### Changed
Expand Down
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 c70b08e

Please sign in to comment.