New Architecture Support
Any plans on supporting the new architecture? It is enabled by default in the next version of React Native 0.74. There is a discussion taking place here among other library authors migrating their library as well
Hey! I've managed to move completely from this library in favor of rn-quick-crypto. At least it supports new architecture. I use btoa without any imports and it works perfectly for me
btw that's what i've found in rn-quick-crypto library https://github.com/margelo/react-native-quick-crypto/issues/18#issuecomment-2065394175
Hey! I've managed to move completely from this library in favor of rn-quick-crypto. At least it supports new architecture. I use btoa without any imports and it works perfectly for me
btw that's what i've found in rn-quick-crypto library margelo/react-native-quick-crypto#18 (comment)
@iliapnmrv Nice, thanks for sharing that! am I right in understanding that the latest version of rn-quick-crypto is much faster at base64 encoding and decoding than this lib (react-native-quick-base64)?
@TowhidKashem as I understand yes, it is much faster
Hey! I've managed to move completely from this library in favor of rn-quick-crypto. At least it supports new architecture. I use btoa without any imports and it works perfectly for me btw that's what i've found in rn-quick-crypto library margelo/react-native-quick-crypto#18 (comment)
@iliapnmrv Nice, thanks for sharing that! am I right in understanding that the latest version of
rn-quick-cryptois much faster at base64 encoding and decoding than this lib (react-native-quick-base64)?
I don't think rn quick crypto implement the Buffer part internally, I see on https://github.com/margelo/react-native-quick-crypto/blob/252758b96bef87ed5ae9783b137b10f56d64eeb4/packages/react-native-quick-crypto/src/index.ts#L2 it was depends on rn quick base64 though
@nickvgn @iliapnmrv the lib supports the new architecture. if you look into margelo's source it's dependent on @craftzdog/react-native-buffer which uses react-native-quick-base64 under the hood
This is a JSI-based library that doesn't use the old bridge. I don't know what to do with supporting the new arch.
This is a JSI-based library that doesn't use the old bridge. I don't know what to do with supporting the new arch.
you don't have to do anything. you are already supporting it :)