Reputation: 49420
I want to automate some stuff on my rooted android Oreo and can't seem to find a way to copy some text to clipboard. I can paste the copied text adb shell input keyevent 279
so hoping to get some way to copy text also.
P.S: not looking for answers suggesting adb shell input text [text]
cause it's slow.
Upvotes: 11
Views: 17975
Reputation: 22832
It seems there are 2 ways to copy a text into android clipboard using adb shell
.
service call clipboard 2 i32 1 i32 0 s16 "text"
(Deprecated and doesn't work on android 8)am broadcast -a clipper.set -e text "text"
in adb shell
.Upvotes: 10