Android Community
Results 1 to 9 of 9

Thread: How to uninstall/delete an application from the emulator?

  1. #1
    Join Date
    Nov 2007
    Posts
    4

    Default How to uninstall/delete an application from the emulator?


    Hi,

    Could anyone tell me how to uninstall an application from the emulator.


    Thanks
    Biswajit

  2. #2
    Join Date
    Dec 2007
    Posts
    1

    Default remove app from emulator

    First,make sure the emulator is running.Then follow below steps:
    1. go to tools directory in command
    2. adb shell
    3. cd /data/app
    4. ls (It will display all the .apk installed in your emulator)
    5. rm ***.apk(which you want to remove)
    6. exit

  3. #3
    Join Date
    Nov 2007
    Posts
    4

    Default [Success]Removal of Application From Emulator

    Thanks Shirly...

    It works fine... )

  4. #4

    Default

    Just clean the android data from your home dir.



    Android application that fills the niche

  5. #5

    Thumbs up Re: remove app from emulator

    Quote Originally Posted by shirly View Post
    First,make sure the emulator is running.Then follow below steps:
    1. go to tools directory in command
    2. adb shell
    3. cd /data/app
    4. ls (It will display all the .apk installed in your emulator)
    5. rm ***.apk(which you want to remove)
    6. exit
    thanks..it saved me

  6. #6
    Join Date
    Jul 2011
    Posts
    1

    Default Re: How to uninstall/delete an application from the emulator?

    I am not sure I need to do this on the actual code of the my Android or it can be done using the interface. I don't have programming skills can you please explain further how can I do it? where is the tools directory in command? do I need to install the SDK on my PC?
    thanks in advanced
    D

  7. #7

    Default Re: How to uninstall/delete an application from the emulator?

    To be more detailed about how to do it (I had to figure it out, so this'll save others having to figure it out too)...

    Find where you installed the SDK. Remember that it can't go under the default C:\Program Files because of the space (at least for now).
    Mine is at c:\android
    Create a DOS window
    Navigate to c:\android\android-sdk\platform-tools
    Now you can do the script mentioned above.

    It helps when people are beginners to be very specific about all the steps.

  8. #8
    Join Date
    Jul 2011
    Posts
    12

    Default Re: How to uninstall/delete an application from the emulator?

    Are you able to remove them by using the emulator like a phone and going to the applications in the settings and uninstalling it?

  9. #9

    Default Re: How to uninstall/delete an application from the emulator?


    shirly's idea is very wonderful and I think you can try it.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •