-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] which RN version(s) is(are) supported yet? #66
Comments
Hi, not the maintainer but I'm happy to answer. I found this to work in 0.57 and 0.58 (so assuming it'll work with 0.57.4). Looking at the native source code for this, it seems that we are indeed limited to strings. |
Also just tried it on 0.59.0 and it's working. |
Sorry should have said working on 0.59.0 for iOS. Have not tried other platforms yet. |
@cjroth does not compile for me on 0.57.4 for Android (latest version at least).
|
Hmm is this the same thing? #63 |
Yep I managed to solve it going back to the previous version. |
@cjroth can you please tell how are you initializing and command you used to build |
@sja1n I experience an infinite load loop if I had the remote debugger turned on. I had to turn it off entirely while using threads and instead use Reactotron. To get around that in development I basically have my code able to run either in a thread or not in a thread, depending on whether or not I need to use the remote debugger. This worked elegantly by using Redux actions that basically can either dispatch to the thread or just to the regular store. |
oh yes, I was using remote debugging and disabling it off worked for me. Thanks @cjroth |
does anyone know if it's possible to get this to work without reverting to a previous version? I'm getting the same error (android) described in #63 with RN 0.57.8 and I'm kinda stuck with that version.. |
Is this library compatible with react-native 0.60.4 ? |
@eharason besides, I make a brief summary table for this question according all information I find currently: react-native version--------react-native-threads version--------platform--------reference/who tests 0.57.1--------0.0.15--------android--------@ChenhuaWANG22 0.57--------0.0.16--------iOS--------@cjroth |
Hi, this project seems to be what I need.
I'm relying on native events from a native modules coming through the bridge at a high rate. In my application right now, processing those events is slowing down the UI.
So I guess that offloading this to another JS engine instance makes sense.
Is this module working with RN 0.57.4?
Are we limited to strings exchanged in messages both ways? If so I guess I would have to stringify my objects.
Thanks in advance.
The text was updated successfully, but these errors were encountered: