Arokya Samy
Arokya Samy

Reputation: 13

Installing android apk file in emulator without command prompt

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

Answers (3)

Mobility
Mobility

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

MohsinSyd
MohsinSyd

Reputation: 175

Use Genymotion emulator. In that, you can install APK by drag and drop the APK on the emulator.

Upvotes: 1

Pramod Ravikant
Pramod Ravikant

Reputation: 1037

  1. Goto terminal.

  2. Move to adt/sdk/platform-tools folder.

  3. 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

Related Questions