Now you need link native dependencies with the following command:
react-native link
Terminal/CMD outcome
Run this command before in order to change React link for Android APP:
react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/
After, you need to run the following command in order to start the react package:
npm run start
react-native start command has been replaced with new npm run start command from 1.0.5 version!
Terminal/CMD outcome