I've got an android app, which is debuggable.
I can back up its important files to my PC like so:
adb exec-out run-as org.test.myapp cat files/afile > afile-from-phone
But how do I put them back?
I.e. what command with copy the file
afile-from-phone
from my pc to
files/afile
in the storage area that belongs to org.test.myapp on the phone?