Replies: 2 comments 1 reply
|
For current releases, yes — this library supports the New Architecture. A few concrete signs in the repo:
So the package is built to work in both worlds, with the New Architecture path used when your RN app enables it. Example of what that means at the app level: {
"dependencies": {
"react-native": "0.79.x",
"@react-native-async-storage/async-storage": "^3.0.2"
}
}The one nuance: Expo/RN support and package support are related but not identical. "Expo SDK supports New Architecture" does not automatically guarantee every installed library version does. You still need a compatible AsyncStorage version. So my answer would be:
If you're deciding today, I'd use the latest package version rather than inferring support from the Expo site alone. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Since this library is mentioned on the https://expo.dev/ website. And SDK 48 announced support for the new RN architeture. Can I assume this also applies for this lib?
All reactions