File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
packages/default-storage-backend Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,18 @@ Pod::Spec.new do |s|
24
24
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++17' ,
25
25
}
26
26
s . platforms = { ios : '13.4' , tvos : '11.0' , :osx => "10.15" }
27
- s . compiler_flags = folly_compiler_flags + ' -DRCT_NEW_ARCH_ENABLED'
28
-
29
- install_modules_dependencies ( s )
27
+ s . compiler_flags = folly_compiler_flags + ' -DRCT_NEW_ARCH_ENABLED=1'
28
+
29
+ if respond_to? ( :install_modules_dependencies , true )
30
+ install_modules_dependencies ( s )
31
+ else
32
+ s . dependency "React-Core"
33
+ s . dependency "React-Codegen"
34
+ s . dependency "RCT-Folly"
35
+ s . dependency "RCTRequired"
36
+ s . dependency "RCTTypeSafety"
37
+ s . dependency "ReactCommon/turbomodule/core"
38
+ end
30
39
else
31
40
s . platforms = { :ios => "9.0" , :tvos => "9.2" , :osx => "10.14" }
32
41
You can’t perform that action at this time.
0 commit comments