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
modules autolinking issues
Perfectly Running App without no pre-log Errors.
The console is throwing the below listed errors in Failure Logs
head on to react-native.config.js and mention all those modules for which you want to turn off autolinking
react-native.config.js
Below I have listed the implementation for doing it:
module.exports = { dependencies: { 'some-unsupported-package': { platforms: { android: null, }, }, }, };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
Perfectly Running App without no pre-log Errors.
Current Behavior
The console is throwing the below listed errors in Failure Logs
Steps to Reproduce
Failure Logs
Solution
head on to
react-native.config.js
and mention all those modules for which you want to turn off autolinkingBelow I have listed the implementation for doing it:
module.exports = { dependencies: { 'some-unsupported-package': { platforms: { android: null, }, }, }, };
The text was updated successfully, but these errors were encountered: