3

Can I run an APK file in the Android emulator? I have to look at the UI design of an application, but only the apk is provided.

Michael Petrotta
  • 58,479
  • 27
  • 141
  • 176
info
  • 2,102
  • 5
  • 22
  • 38
  • See here:http://stackoverflow.com/questions/4512458/androidhow-to-run-apk-file-on-emulator and here:http://stackoverflow.com/questions/3480201/how-do-you-install-an-apk-file-in-the-android-simulator – Harry Joy Mar 29 '11 at 04:52

2 Answers2

4

Assuming you have an emulator created and started (which you can do with the AVD manager,) you can install an apk by running:

adb install WhateverApp.apk

from the terminal. The adb command comes with the SDK and is under platform-tools/. Then just run it in the emulator.

tmandry
  • 1,255
  • 16
  • 32
3

Yes you can run apk in the emulator . for that you need to install apk in emulator ..

Steps To Install APK in Emulator

  • Open Command Prompt

  • Now Go to tools or platform-tools . Ex(E:\android-sdk\tools)

  • Then type this command adb install [apk file name whenever it stored]
Chirag
  • 56,384
  • 29
  • 154
  • 197