Android Studio emulator not updating my changes

15,669

Solution 1

There are some cases that the emulator gets corrupt. It will not behave properly and update your app. If you are sure that your app complies with no errors and Studio installs it on the emulator.

Go to tools->AVD Manager. Right click on the device you are using and select wipe data.

This will, of course, delete all the device data. So if there is nothing important there it should help.

AVD MANAGER

Solution 2

Step 1 : Open developer mode on android emulator with Fn+CMD+M (keys For mac users)

enter image description here

Step 2 : press Enable Live Reload Or Disable Live Reload

Solution 3

Some layout changes do not cause the app to be rebuilt when it is run through RUN. Try to clear the app and then run it, if it does not work, Clear > Rebuild > Run.

If this works for you, add these tasks to the automatic tasks whenever the run is used.

Share:
15,669
Admin
Author by

Admin

Updated on July 02, 2022

Comments

  • Admin
    Admin almost 2 years

    I am writing a database app in Android Studio and I have changed the design layout so that it has a few text boxes and an input button. I have done all the code for it and saved it all multiple times but when I run the emulator of my app it is still not showing my design I have done and is still just showing the "Hello World" default text box you get when you first make a new app. Can anyone tell me why the emulator is not updating when I save? thanks