Simple app to interact with Android system clipboard service via adb shell one liners.
Download the application apk and manually install application on your android device.
Assuming you have already installed the app, connect to your emulator or phone using adb shell. First start the service. You can do this either by opening the application or using the following commands on ADB shell $ adb shell # am startservice ca.zgrs.clipper/.ClipboardService
Once service is started you can invoke clipper service by broadcasting intents. The intent's Action can be either "get" or "set". When setting the clipboard value, pass your string as an Extra parameter.
- Supported actions
- get: print the value in clipboard into logs (TODO: print the value on standard output)
- set: sets the clipboard content to the string passed via extra parameter "text"
- Supported extras
- text: The text that you want to be copied in the clipboard
Usage example using broadcast intent:
# am broadcast -a clipper.set -e text "this can be pasted now"
# am broadcast -a clipper.get
Build using maven
- update pom.xml and set ANDROID_HOME in enviroment.
- build:
mvn package
- deploy:
mvn android:deploy