How do I delete sample app from an android emulator?

AndroidAndroid EmulatorEmulation

Android Problem Overview


Somehow, I have deleted the code for the sample apps from the workspace, but the apps still show up in the android emulator. How do I delete them?

Android Solutions


Solution 1 - Android

Inside the emulator go to the Settings app, then Applications -> Manage Applications -- you can delete them from there.

Solution 2 - Android

ADB lets you uninstall applications. Just go:

adb uninstall <package>

You can find ADB in the tools folder of the Android SDK.

Solution 3 - Android

In AndroidStudio (at least in v0.9.9) you can wipe data from a AVM. Go to Tools - Android - AVD Manager and in the menu for an AVM select "wipe data".

enter image description here

Solution 4 - Android

In the Android emulator,

  • Visit the Settings widget on the Home screen. (Not the settings you may visit through more button (three-dotted button))
  • Then click Apps and notifications.
  • After that click See all apps that you can see on the top half of the screen.
  • Select the app you are supposed to delete.
  • Then click the Uninstall.

Yes. You did it!!! Now your app is uninstalled from the emulator.

Solution 5 - Android

Two solution:

  1. When the emulator not running go to Tools -> AVD Manager -> in actions section click wipe data -> OKenter image description here

  2. In emulator go to setting and then select app then delete. enter image description here

Solution 6 - Android

1). go to settings in emulator 2). go to storage use 3). click on your application. 4). select uninstall

regards Dharma

Solution 7 - Android

Before starting emulator check on wipe user data

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionyogsmaView Question on Stackoverflow
Solution 1 - AndroidDreView Answer on Stackoverflow
Solution 2 - AndroidDrewView Answer on Stackoverflow
Solution 3 - AndroidThomas KremmelView Answer on Stackoverflow
Solution 4 - AndroidSandaliTPView Answer on Stackoverflow
Solution 5 - AndroidoaktView Answer on Stackoverflow
Solution 6 - AndroidLakshmana GumpinaView Answer on Stackoverflow
Solution 7 - AndroidDhruvilView Answer on Stackoverflow