I am developing an app using react native, I use some code base for ios and android, the ios version run smoothly.
But the android version run very slowly. the weird thi
Sometimes, one or more than one active console.log() lines cause this issue. console.log lines should be searched and deleted if they exist.
console.log()
console.log
Also in production, babel-plugin-transform-remove-console can be used to clear all console.* methods automatically.