user992804
user992804

Reputation: 339

Installing .apk file on Emulator in Linux

I'm trying to integrate the Zxing Bar code scanner into an application, but I need to install the bar code application on the emulator first. I already downloaded the .apk file. How do I install it on the emulator? I'm running Ububtu.

Upvotes: 1

Views: 5461

Answers (2)

fat
fat

Reputation: 7133

  1. Start emulator.
  2. android-sdk-linux/platform-tools > ./adb -e install Test-debug.apk

Upvotes: 2

user370305
user370305

Reputation: 109257

Goto Shell/Terminal/, reach at android-sdk/tools directory then

adb install fileName.apk 
or ./adb install fileName.apk

Upvotes: 5

Related Questions