Skip to content

Commit 238105a

Browse files
committed
Update README.md
1 parent b262ccd commit 238105a

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Diff for: README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ npm install react-native-multithreading
2424
npx pod-install
2525
```
2626

27-
> Requires a version of react-native-reanimated which includes [my PR](https://github.com/software-mansion/react-native-reanimated/pull/1861) ([**2.1.0**](https://github.com/software-mansion/react-native-reanimated/releases/tag/2.1.0) or above).
27+
> Requires react-native-reanimated [**2.1.0**](https://github.com/software-mansion/react-native-reanimated/releases/tag/2.1.0) or higher.
2828
29-
> ⚠️ Warning: This is still just a proof of concept - do not use this library in production! ⚠️
29+
> 🎉 [v1.0](https://github.com/mrousavy/react-native-multithreading/releases/tag/v1.0.0) with Android support is here! 🎉
3030
3131
## Why
3232

@@ -110,15 +110,14 @@ console.log(`Fibonacci Result: ${result}`)
110110

111111
## What's not possible?
112112

113-
1. At the moment, only iOS is implemented. I'm trying to get Android working in [#3](https://github.com/mrousavy/react-native-multithreading/pull/3) - if anyone can help me with the CMake part I'd appreciate it.
114-
2. Since the library uses JSI for synchronous native methods access, remote debugging (e.g. with Chrome) is no longer possible. Instead, you should use [Flipper](https://fbflipper.com).
115-
3. All functions you are calling inside a custom thread, must be workletized to truly run on a separate thread. So add the `'worklet'` directive at the top of every function you're calling in that thread (including the thread callback itself), and don't forget to install the Reanimated babel plugin.
113+
1. Since the library uses JSI for synchronous native methods access, remote debugging (e.g. with Chrome) is no longer possible. Instead, you should use [Flipper](https://fbflipper.com).
114+
2. All functions you are calling inside a custom thread, must be workletized to truly run on a separate thread. So add the `'worklet'` directive at the top of every function you're calling in that thread (including the thread callback itself), and don't forget to install the Reanimated babel plugin.
116115

117116
## Supported JS engines
118117

119118
* JavaScript Core (JSC)
120119
* [Hermes](http://hermesengine.dev)
121-
* [V8](http://github.com/Kudo/react-native-v8)
120+
* [V8](http://github.com/Kudo/react-native-v8) (iOS only)
122121

123122
## Performance
124123

0 commit comments

Comments
 (0)