React-native lifecycle methods warning: " componentWillReceiveProps is deprecated and will be removed in the next major version"

I think it does not affect your application, it's just annoying.

Hide it by add below into index.js:

import { YellowBox } from 'react-native';

YellowBox.ignoreWarnings([
  'Warning: componentWillMount is deprecated',
  'Warning: componentWillReceiveProps is deprecated',
  'Module RCTImageLoader requires',
]);

These deprecation notices was not due to land in React Native 0.54 but was by mistake, you can upgrade React Native to 0.54.1 and see that these messages are gone.

Read more here.