Install Existing apk file to Android Emulator
by Sasikumar[ Edit ] 2013-10-23 10:28:31
To install existing apk files to emulator do the following :
Step 1: Check for
adb in
"tools" or in
"platform-tools" folder of the
sdk directory.
Step 2: Copy the apk file and place it in the corresponding directory where adb is present.
Step 3: Now in the command line move to the directory where adb is present and run the following command
$adb install my_application.apk
Note:Now you can see the application installed in the emulator.
To un-install from emulator do the following :
Step 1:In the command line move to the directory where adb is present and run the following command
$adb shell rm my_application.apk