By \'Very slow\' i mean, it loads a single transition about 5 second despite this is just a simple example app.
Here is the whole app RN code
Take a look at
In your entry file try adding the following snippet:
if (!__DEV__) { console.log = () => {}; }
This will allow console logs to work during development, but when you release for production it is just an empty function call.