├── .gitignore ├── LICENSE ├── README.md ├── amonitor.py ├── app ├── 8.1 │ ├── monkey │ └── monkey.jar ├── MonitorService.apk ├── adb-darwin ├── adb-linux ├── install.sh ├── monkey └── monkey.jar ├── aservice.py ├── keymap.py ├── monkey.py ├── res ├── back.png ├── demo.gif ├── home.png ├── icon.icns ├── menu.png ├── power.png ├── volume_down.png └── volume_up.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/README.md -------------------------------------------------------------------------------- /amonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/amonitor.py -------------------------------------------------------------------------------- /app/8.1/monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/app/8.1/monkey -------------------------------------------------------------------------------- /app/8.1/monkey.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/app/8.1/monkey.jar -------------------------------------------------------------------------------- /app/MonitorService.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/app/MonitorService.apk -------------------------------------------------------------------------------- /app/adb-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/app/adb-darwin -------------------------------------------------------------------------------- /app/adb-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/app/adb-linux -------------------------------------------------------------------------------- /app/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/app/install.sh -------------------------------------------------------------------------------- /app/monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/app/monkey -------------------------------------------------------------------------------- /app/monkey.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/app/monkey.jar -------------------------------------------------------------------------------- /aservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/aservice.py -------------------------------------------------------------------------------- /keymap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/keymap.py -------------------------------------------------------------------------------- /monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/monkey.py -------------------------------------------------------------------------------- /res/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/res/back.png -------------------------------------------------------------------------------- /res/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/res/demo.gif -------------------------------------------------------------------------------- /res/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/res/home.png -------------------------------------------------------------------------------- /res/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/res/icon.icns -------------------------------------------------------------------------------- /res/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/res/menu.png -------------------------------------------------------------------------------- /res/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/res/power.png -------------------------------------------------------------------------------- /res/volume_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/res/volume_down.png -------------------------------------------------------------------------------- /res/volume_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/res/volume_up.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUSSON/Amonitor/HEAD/setup.py --------------------------------------------------------------------------------