Reputation: 339
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
Reputation: 7133
android-sdk-linux/platform-tools > ./adb -e install Test-debug.apk
Upvotes: 2
Reputation: 109257
Goto Shell/Terminal/, reach at android-sdk/tools directory then
adb install fileName.apk
or ./adb install fileName.apk
Upvotes: 5