Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is, "performing streamed install"

Tags:

android

adb

I am running a build through adb command,

adb install myapp.apk

In the console, I get the message, Performing streamed install

What does this mean.

enter image description here

like image 770
dcanh121 Avatar asked Apr 04 '19 20:04

dcanh121


2 Answers

PackageManager has 2 CLI interfaces - legacy pm and new cmd package.

The legacy installation process required uploading the .apk file to /data/local/tmp folder first. The new process has the (default) option of using pipelines instead of the temporary file. This option is called Streamed Install.

like image 182
Alex P. Avatar answered Nov 12 '22 05:11

Alex P.


It seems to be the previously installed application and caused the cache to be unable to continue. I have tried many ways and the simplest way to fix it is to restart your phone or virtual machine

like image 33
Doan Bui Avatar answered Nov 12 '22 05:11

Doan Bui