We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe. Might be, but probably not
Describe the solution you'd like Support for using the SDK in RN. Should be fairly straight forward.
Describe alternatives you've considered None
Additional context To get it up and running in RN run the following: Install "Nodify" to hack the RN installation
yarn add rn-nodeify yarn add react-native-crypto
Hack the installation
yarn rn-nodeify --install url,events,https,http,util,stream,crypto,vm,buffer --hack --yarn
require('crypto')
cd ios && pod install && cd ../
rn-cli.config.js
module.exports = { resolver: { extraNodeModules: require("node-libs-react-native"), }, }
stream
readable-stream
Working example Check out this GitHub repo
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
Might be, but probably not
Describe the solution you'd like
Support for using the SDK in RN. Should be fairly straight forward.
Describe alternatives you've considered
None
Additional context
To get it up and running in RN run the following:
Install "Nodify" to hack the RN installation
Hack the installation
require('crypto')
on shim.js (root of your project)cd ios && pod install && cd ../
rn-cli.config.js
stream
, installreadable-stream
and rebuild the projectWorking example
Check out this GitHub repo
The text was updated successfully, but these errors were encountered: