Reputation: 69
I'm getting the same error as this issue
However rather than RCTDevLoadingView mine is referring to RNGestureHandlerModule. Similar to the issue linked above, my guess is that it's something related to making an update in the appdelegate.m file, however I cant figure out what that entails.
I'm using react-native 0.67.1 and react-native-gesture-handler 2.2.0.
Thank you
Upvotes: 6
Views: 5878
Reputation: 818
So if you do not depend on the old versions, just run
npm install react-native-reanimated@latest
or yarn add react-native-reanimated@latest
.
Then cd ios && pod install
Change react-native-reanimated
version to ~2.2.4
in package.json, then run
npm install
or yarn install
cd ios && pod install
The answer was got from here
Upvotes: 15
Reputation: 57514
This seems to be fixed in 2.8.0:
This did, in fact, cause deadlocks for me like the warning said it could. (So it's nice that it's actually fixed instead of them just trying to hide the warning and making it harder to debug. Fortunately it didn't hide it in the Xcode console, or this would have been a real nightmare...)
Upvotes: 3