Monthly Archives: August 2011
uninstall/delete an application from android 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 To remove the system apps 1. adb remount 2. adb shell 3. […]
Tips on How to install .apk files into the Android emulator (newer versions like android-sdk_r08-windows):
I am a Khulna University CSE Student and this is my blog… Here I may post some tips for problems I am facing while developing my projects The first one goes here…….. Once the emulator is set up follow the following instructions: –Copy the file to “android-sdk-windows/platform-tools/” folder — Open a command line window (cmd), […]