UncleAlico
UncleAlico

Reputation: 135

Android Studio Bumblebee emulator not updating my changes

I am using macbook with M1 chip. I am using Android Studio Bumblebee | 2021.1.1 Canary 3 version. When I run the project for the first time, there is no problem. When I debug for the second time, the changes I made in the codes are not visible in the emulator. I can't see the changes in logcat. What should I do? thanks

Upvotes: 5

Views: 3328

Answers (3)

Zephyros
Zephyros

Reputation: 1

If you are sure it gets compiled and Android Studio installs it without errors you could try these things that worked for me:

  1. Uninstalling the app inside the emulator and then running it again so the app gets reinstalled with your new version.

  2. Also, as it's answered on here. You could also go to Tools -> AVD Manager. Right click on the emulator and then wipe data. This will delate all the data on the device.

enter image description here

Upvotes: 0

UncleAlico
UncleAlico

Reputation: 135

I solved the problem. "Edit Configurations..." -> Then the option I have shown in the red square needs to be selected.

enter image description here

Upvotes: 6

Ole Pannier
Ole Pannier

Reputation: 3663

  1. You can try to go from File to Invalidate Caches / Restart... to empty your cache.
  2. If that doesn't work try to downgrade your version. M1 Chip has problems with Android Studio because it is pretty new. Follow along this answer.

Upvotes: 1

Related Questions