Closed alpha0010 closed 1 year ago
Downgrading to 1.3.2
works fine. Looks like the confusing point is the latest
tag in npm points to the beta release, instead of 1.3.2
(which appears to be the intended stable).
The problem seems to be the Fabric check in the podspec
:
Instead of
fabric_enabled = ENV['RCT_NEW_ARCH_ENABLED']
It should be:
fabric_enabled = ENV['RCT_NEW_ARCH_ENABLED'] == '1'
When Fabric is disabled, RCT_NEW_ARCH_ENABLED
is set to '0'
which is truthy in Ruby.
Attempting
pod install
on RN 0.71, I get the error:Trying the recommended
pod repo update
andpod install --repo-update
do not resolve the issue.Library version:
1.4.0-beta.0
, hermes, old architecture.