English 中文(简体)
How do I clean up my android emulator of unwanted applications?
原标题:

I still have unwanted apps in my menu in the android emulator. The projects which have been deleted from the workspace are there on the emulator. How do I clean the emulator?

最佳回答

The easiest way is just to launch the emulator, go to settings -> applications. Then pick the unwanted applications and uninstall them.

Alternatively you can do adb -e shell while the emulator is running, find the .apk files in the file system (I think they re under /system/apps) and remove them manually.

One final solution is in Eclipse s Android Plugin (ADT), go to the file manager, find the .apk files and remove them.

问题回答

If you want to delete/uninstall unwanted apps from the android emulator just follow these steps:

  1. Click and hold the app you want to delete/uninstall from the emulator.
  2. You will be presented home screen with "Uninstall option on the top.
  3. Drag and drop your app on Uninstall that s it the app is uninstalled from the emulator.

Refer to the image attached.

I prefer delete emulator and create newest. It takes only one minute.

Easiest way is to Wipe Data:

enter image description here

In may case Wipe Data cleaned around 7GB while I had only one installed app!

It is very simple and quick, just follow these two steps,

Go to AVD Manager, enter image description here

Then simply, wipe the data of emulator. enter image description here

It will be like brand new device.





相关问题
Android emulator alternative

I m completely new to Android development, but I just got a HTC Hero and would like to develop a few applications for it. However, I ve use a laptop as my dev machine and the emulator is extremely ...

Getting my app to work on my phone

I wrote an app android sdk version 1.5 using it s built in emulator in eclipse. I created a database outside of eclipse populated it with data and push it to the emulator folder data/data/project name/...

how to run android emulator with TTS enabled

i hope i am not posting a duplicate question, can anyone please tell me how to enable TTS in android emulator enabled when eclipse starts it when we run the project. is it that i have to start with ...

Android: difference in ACTION_SEND between api level 2 and 5?

I have an android app that wants to initiate an email. The following code works in an api level 5 emulator, but not on a level 2 emulator or device: Intent emailIntent = new Intent(android.content....

Android Videoview video not seen

I am using Videoview to playback mp4 file from local machine using android emulator. I hear the audio, but the screen is blank and no video is seen. Android SDK 2.0.1 Does anyone have an idea what is ...

Android - Having a hard time debuging Eclipse

I am a little bit new to developing for Android using Eclipse (Coming from a .NET/Visual Studio background). My biggest problem in developing Android app is "debugging" them. Every time the emulator ...

热门标签