-
Notifications
You must be signed in to change notification settings - Fork 157
Malformed calls from JS: field sizes are different / Error calling JSTimers.CallTimers [Fixed] #37
Comments
@nunobasto - thank you, this helped me a lot. One thing that threw me off for a bit, was that since I was experiencing the error on Android, I figured that the file I would have to edit was Although, this feels like a workaround, I'm not sure of a better solution at this point. It does seem to work for me, and you saved me a lot of time. Thanks again. |
@nunobasto I just want to thank you for publishing this information. You are a life saver, at least my life has been saved by you. THANK YOU 👍 |
@nunobasto Really thanks for this for sharing this information. Also it saves my lot of time. |
I also ran into this issue but solution was similar but slightly different. The root cause that I found was that in
That's consumed and built into the
Then
Here you see that If I add Another fix was to change the
|
Rather than modifying node_modules directly, I set up a script to do it for me, so I can get consistent fixes without manually applying every time I clean m node_modules folder. Here is what I did to fix it until I can move away from this library (or the library fixes this issue). Add a node script to modify the file. Here is what mine was:
Then in
|
For the one that will have the same issue. No need for custom postinstall scripts. This library is either not supported. I have forked it and replace all needed for RN 0.61+. It's here https://github.com/AndriiUhryn/react-native-custom-components and free to install. |
I have several similar Apps still with this pioneer Navigation, so now that Google requires a 64 bit version that is only available on RN 0.59, I had to upgrade. There are too many implications and limitations in changing now to another navigation system.
In this version of RN, when I navigated to another route, I was having this error
Malformed calls from JS: field sizes are different.
and in another experimentError calling JSTimers.CallTimers
.I found out that if I removed the RightButton from NavigationBarRouteMapper all was ok so after some research, I fixed this error by commenting/removing this bit of code from src/NavigatorNavigationBarStylesIOS.js:
I just leave this fix here so anyone with the same problem can have this possible solution.
The text was updated successfully, but these errors were encountered: