Reputation: 13
I want to Install apk file in an Emulator without using any Command prompt.
Can we install it without using command?
Can some one guide me in this?
Thanks in advance
Upvotes: 0
Views: 310
Reputation: 263
From the command prompt/shell/terminal: Browse to the platform-tools directory Then type the following command.
adb install [.apk path]
Example:
adb install C:\Users\Name\Desktop\test.apk
Upvotes: 0
Reputation: 175
Use Genymotion emulator. In that, you can install APK by drag and drop the APK on the emulator.
Upvotes: 1
Reputation: 1037
Goto terminal.
Move to adt/sdk/platform-tools
folder.
Type in the following command:
./adb install your_application.apk
*You can also use Airdroid. It is a good app with more useful features.
Upvotes: 1