scorelab / Go-social

Community of today used to use mobile phones to make their life easier and Community based mobile applications are famous among them. There are several kind of community based applications in use and most of them are relating to a specific domain. But core components have similar features. Address this issue and saving development time by Introducing a common app template with customizable components for community based mobile applications , is the main purpose of this project.
Apache License 2.0
61 stars 90 forks source link

Solution for `modules autolinking issues` in Go-social #149

Open Yash621 opened 2 years ago

Yash621 commented 2 years ago

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

  1. Follow all the steps in the readme
  2. run the app as usual using terminal.

Failure Logs

Screenshot 2022-03-19 223651

Solution

head on to react-native.config.js and mention all those modules for which you want to turn off autolinking

Below I have listed the implementation for doing it:

module.exports = { dependencies: { 'some-unsupported-package': { platforms: { android: null, }, }, }, };