Disable React Native yellow box warnings
Sometimes you upgrade React Native and you get a bunch of deprecation warnings because your app is relying in some 3rd party library that hasn't been updated yet.
To disable those warnings just stick this line inside your index.js file:
console.disableYellowBox = true;
Tweet