0

I uninstalled the React Native app on my AVD simulator. I tried to run "react-native run-android" and I got this message in the console "No apps connected. Sending "reload" to all React Native apps failed. Make sure your app is running in the simulator or on a phone connected via USB"

I thought react-native run-android was supposed to re-install the app on the simulator. What can I do to have the app re-installed on the simulator?

Hi, Can anyone help me out?

Ola Fashade Samson
  • 111
  • 1
  • 1
  • 6

1 Answers1

1

You just have to clear the cache

# Reset metro bundler cache : 
`npx react-native start --reset-cache`
    
# Remove Android assets cache : 
`cd android && ./gradlew clean`
    
# Relaunch metro server : 
`npx react-native run-android`

Or you can find you solution here.