Every time I will need to make index.android.bundle file in android studio.
Command 1: react-native bundle --platform --dev false --entry-file index.android.js --bundle-output android /app/src/main/assets/index.android.bundle/ --assets-dest android/app/src/main/res
Command 2 : react-native run-android.
Please let me know is we need to hit every time to see the little changes on simulator or i 'm doing something wrong in that....
Also please tell me how to enable android monitor for debugging the change or check the log of react native files.
Thanks
Finally i got a solution of this problem, React-naive js is based on Instant refreshing with that user is able to see the result in simulator..
In this you need to follow these steps before starting Developing in react js
You can check in the browser as well : localhost:8081 that is showing react packager server is running.
After this by pressing Ctrl + D then Ctrl + M for debugging or Reloading your changes in the simulator .
You can check this above methods for get rid of issues .
Thanks!