Skip to content

Commit

Permalink
feat: updated react-native-video.podspec for implementing new archite…
Browse files Browse the repository at this point in the history
…cture
  • Loading branch information
yungblud committed Jul 1, 2024
1 parent c678801 commit efefd5c
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions react-native-video.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ package = JSON.parse(File.read(File.join(__dir__, "package.json")))

folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'

fabric_enabled = ENV['RCT_NEW_ARCH_ENABLED'] == '1'

Pod::Spec.new do |s|
s.name = 'react-native-video'
s.version = package['version']
Expand All @@ -16,8 +18,18 @@ Pod::Spec.new do |s|
s.source = { :git => "https://github.com/TheWidlarzGroup/react-native-video.git", :tag => "v#{s.version}" }
s.platforms = { :ios => "13.0", :tvos => "13.0", :visionos => "1.0" }

if fabric_enabled
s.subspec "Fabric" do |ss|
ss.source_files = "ios/Fabric/**/*.{h,mm}"
end
end

s.subspec "Video" do |ss|
ss.source_files = "ios/Video/**/*.{h,m,swift}"
ss.source_files = "ios/Video/**/*.{h,m,swift,mm}"

if fabric_enabled
ss.dependency "react-native-video/Fabric"
end

if defined?($RNVideoUseGoogleIMA)
Pod::UI.puts "RNVideo: enable IMA SDK"
Expand All @@ -32,7 +44,7 @@ Pod::Spec.new do |s|
Pod::UI.puts "RNVideo: enable Video caching"
ss.dependency "SPTPersistentCache", "~> 1.1.0"
ss.dependency "DVAssetLoaderDelegate", "~> 0.3.1"
ss.source_files = "ios/*/**/*.{h,m,swift}"
ss.source_files = "ios/*/**/*.{h,m,swift,mm}"
ss.pod_target_xcconfig = {
'OTHER_SWIFT_FLAGS' => '$(inherited) -D USE_VIDEO_CACHING'
}
Expand All @@ -47,7 +59,7 @@ Pod::Spec.new do |s|
s.dependency "React-Core"

# Don't install the dependencies when we run `pod install` in the old architecture.
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
if fabric_enabled then
s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
s.pod_target_xcconfig = {
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
Expand Down

0 comments on commit efefd5c

Please sign in to comment.