3

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,804
  • 6
  • 36
  • 42
Fairuz Yassar
  • 129
  • 3
  • 11

1 Answers1

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