So I have created my Application using React native and just produced my first release-build. My problem now is that I can't get back to react natives debug-mode.
By following the documentation, this is what i did.
react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/
This code generated the bundled index.android.bundle
and index.android.bundle.meta
Now every time I execute react-native run-android
, the javascript code-base wont update the application and I am not able to access the development(shake) menu in my app.
If I run react-native bundle
again, the code will update.
I guess this is a simple issue, but can't find any information how to return so the app isn't using the bundled version anymore.