Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android "adb install" does nothing

Tags:

android

apk

adb

I'm having trouble installing a simple .apk file using adb. Here's what I entered and got back:

adb install test.apk
4445 KB/s (1921193 bytes in 0.422s)

In an attempt to debug I added the trace flag and got back:

adb install test.apk ADB_TRACE=1
4445 KB/s (1921193 bytes in 0.422s)
Aborted

Also, the adb devices command does list my device and when I manually copy the .apk to my device it installs/runs fine.

Help :(

like image 714
djdmbrwsk Avatar asked Apr 26 '26 01:04

djdmbrwsk


1 Answers

Try below

adb install -r test.apk

or you need to enable to insatll unknown source app in android settings.

like image 110
Rocky Chen Avatar answered Apr 28 '26 13:04

Rocky Chen