React native works very slow on android

前端 未结 3 785
一整个雨季
一整个雨季 2021-01-17 16:28

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

3条回答
  •  借酒劲吻你
    2021-01-17 16:39

    Turn logging off in production

    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.

提交回复
热议问题