File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -111,11 +111,13 @@ def use_hermes?(options)
111111def use_new_architecture! ( options , react_native_version )
112112 return unless new_architecture_enabled? ( options , react_native_version )
113113
114- Pod ::UI . warn (
115- 'As of writing, New Architecture (Fabric) is still experimental and ' \
116- 'subject to change. For more information, please see ' \
117- 'https://reactnative.dev/docs/next/new-architecture-intro.'
118- )
114+ if react_native_version < v ( 0 , 76 , 0 )
115+ Pod ::UI . warn (
116+ 'As of writing, New Architecture (Fabric) is still experimental and ' \
117+ 'subject to change. For more information, please see ' \
118+ 'https://reactnative.dev/docs/next/new-architecture-intro.'
119+ )
120+ end
119121
120122 options [ :fabric_enabled ] = true
121123 options [ :new_arch_enabled ] = true
You can’t perform that action at this time.
0 commit comments