1

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?

l-l
  • 3,699
  • 6
  • 34
  • 40

1 Answers1

2

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
  • 2,866
  • 1
  • 14
  • 28