I want to install android Market App on Emulator, so that I can browse and install various free apps on emulators.
Can you guide me how to do this?
Sometimes you do not have android device to test the andorid app (apk). But don't worry you can install the android app on the emulator. It is very easy to install and test the app on android emulator. For this even you do not require any IDE or any development experience.
Yes this is possible, Open the AVD manager in android studio. create a virtual device. choose a device definition with the play store icon.
We just need the APK file to install it in the Emulator. First of all, we still have to open the Emulator and after that drag, your APK file and drop it in the emulator anywhere and that's it it will simply install that app in the Emulator.
Android market application cannot be directly downloaded to a computer. But there may be some alternative sites that provide the .apk file of the application. Search in Google. If you got that .apk file downloaded in your system, you can easily install that by the following steps. I usually do like this.
First of all copy the .apk file to the android sdk --> 'platform-tools' directory
To start the emulator use type the following command on your terminal
cd /path_to_android_sdk/platform-tools
// press enter
then type the following to start the emulator
emulator -avd <emulator_name>
// press enter
<emulator_name>
is the name that you have given when you first created that emulator. If you don't know that name, go to eclipse and click window-->Avd and Sdk manager. On that window you can see the AVD name.
After that wait for a couple of minutes so that the emulator starts. After that, unlock the emulator:
Open another tab in terminal or open another terminal and type the following commands
cd /path_to_android_sdk/platform-tools; ls
//press enter
Now you should see your application name.
adb install <name_of_the_apk>
// press enter
./adb install <name_of_the_apk>
// for MAC machine
After that you can see a success message.
Look at this - might be what you're looking for
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With