How to uninstall/delete an application from the android emulator?
Then follow below steps:
1. Find where you installed the SDK.
Mine is at C:\Program Files\Android
Create a DOS window
Navigate to C:\Program Files\Android\android-sdk\platform-tools (where ADB exist)
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
Comments
Post a Comment