feat(fabric): updated ios podspec for implementing new architecture (#3961)

* chore: 🔥 updated FabricExample/Gemfile.lock (bundle install)

* feat: updated react-native-video.podspec for implementing new architecture

* feat: updated FabricExample/ios/Podfile.lock (pod install)

* chore: updated examples/basic Gemfile.lock (bundle install)

* chore:  updated examples/basic ios Podfile.lock (pod install)
This commit is contained in:
yungblud
2024-07-02 17:56:14 +09:00
committed by GitHub
parent 3f11894c2b
commit df29c2310d
5 changed files with 49 additions and 13 deletions

View File

@@ -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']
@@ -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"
@@ -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'
}
@@ -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\"",