I made some code changes in AndroidManifest.xml by adding some tag and refactoring some code but when I run the app I do not see the changes. Do I need to rebuild android project?
Asked
Active
Viewed 1,310 times
3
-
Try wiping out cache by going to File->Invalidate Cache and Restart. – Mrudul Tora Dec 30 '20 at 11:48
-
Does this answer your question? [How to rebuild the entire Android folder?](https://stackoverflow.com/questions/43214862/how-to-rebuild-the-entire-android-folder) – Marnanel Thurman Dec 12 '21 at 05:06
1 Answers
4
You have to re-install the app either with android studio
or with npx react-native run-android
Whenever you make any change in the JS code you don't need to re-install the app but once any change made in the native code(Android, IOS), you have to re-install the app again either you are installing some native module or doing some change in the native side.

Waheed Akhtar
- 3,110
- 1
- 16
- 30