├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── android_touch.gif ├── example ├── example.gif └── example.py ├── jni ├── Android.mk ├── Application.mk ├── src │ ├── HTTPServer.cpp │ ├── HTTPServer.h │ ├── Logging.cpp │ ├── Logging.h │ ├── TouchInput.cpp │ ├── TouchInput.h │ ├── TouchState.cpp │ └── TouchState.h └── vendor │ ├── httplib │ └── httplib.h │ ├── jsoncpp │ ├── json-forwards.h │ ├── json.h │ └── jsoncpp.cpp │ └── libevdev │ ├── event-names.h │ ├── input-event-codes.h │ ├── input.h │ ├── libevdev-int.h │ ├── libevdev-names.c │ ├── libevdev-uinput-int.h │ ├── libevdev-uinput.c │ ├── libevdev-uinput.h │ ├── libevdev-util.h │ ├── libevdev.c │ ├── libevdev.h │ └── uinput.h ├── libs ├── arm64-v8a │ └── touch ├── armeabi-v7a │ └── touch ├── armeabi │ └── touch ├── mips │ └── touch ├── mips64 │ └── touch ├── x86 │ └── touch └── x86_64 │ └── touch └── python_api ├── README.md ├── __init__.py ├── __pycache__ └── touch.cpython-36.pyc ├── touch.py └── touch_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/README.md -------------------------------------------------------------------------------- /android_touch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/android_touch.gif -------------------------------------------------------------------------------- /example/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/example/example.gif -------------------------------------------------------------------------------- /example/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/example/example.py -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/Application.mk -------------------------------------------------------------------------------- /jni/src/HTTPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/src/HTTPServer.cpp -------------------------------------------------------------------------------- /jni/src/HTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/src/HTTPServer.h -------------------------------------------------------------------------------- /jni/src/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/src/Logging.cpp -------------------------------------------------------------------------------- /jni/src/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/src/Logging.h -------------------------------------------------------------------------------- /jni/src/TouchInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/src/TouchInput.cpp -------------------------------------------------------------------------------- /jni/src/TouchInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/src/TouchInput.h -------------------------------------------------------------------------------- /jni/src/TouchState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/src/TouchState.cpp -------------------------------------------------------------------------------- /jni/src/TouchState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/src/TouchState.h -------------------------------------------------------------------------------- /jni/vendor/httplib/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/httplib/httplib.h -------------------------------------------------------------------------------- /jni/vendor/jsoncpp/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/jsoncpp/json-forwards.h -------------------------------------------------------------------------------- /jni/vendor/jsoncpp/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/jsoncpp/json.h -------------------------------------------------------------------------------- /jni/vendor/jsoncpp/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/jsoncpp/jsoncpp.cpp -------------------------------------------------------------------------------- /jni/vendor/libevdev/event-names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/event-names.h -------------------------------------------------------------------------------- /jni/vendor/libevdev/input-event-codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/input-event-codes.h -------------------------------------------------------------------------------- /jni/vendor/libevdev/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/input.h -------------------------------------------------------------------------------- /jni/vendor/libevdev/libevdev-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/libevdev-int.h -------------------------------------------------------------------------------- /jni/vendor/libevdev/libevdev-names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/libevdev-names.c -------------------------------------------------------------------------------- /jni/vendor/libevdev/libevdev-uinput-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/libevdev-uinput-int.h -------------------------------------------------------------------------------- /jni/vendor/libevdev/libevdev-uinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/libevdev-uinput.c -------------------------------------------------------------------------------- /jni/vendor/libevdev/libevdev-uinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/libevdev-uinput.h -------------------------------------------------------------------------------- /jni/vendor/libevdev/libevdev-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/libevdev-util.h -------------------------------------------------------------------------------- /jni/vendor/libevdev/libevdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/libevdev.c -------------------------------------------------------------------------------- /jni/vendor/libevdev/libevdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/libevdev.h -------------------------------------------------------------------------------- /jni/vendor/libevdev/uinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/jni/vendor/libevdev/uinput.h -------------------------------------------------------------------------------- /libs/arm64-v8a/touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/libs/arm64-v8a/touch -------------------------------------------------------------------------------- /libs/armeabi-v7a/touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/libs/armeabi-v7a/touch -------------------------------------------------------------------------------- /libs/armeabi/touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/libs/armeabi/touch -------------------------------------------------------------------------------- /libs/mips/touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/libs/mips/touch -------------------------------------------------------------------------------- /libs/mips64/touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/libs/mips64/touch -------------------------------------------------------------------------------- /libs/x86/touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/libs/x86/touch -------------------------------------------------------------------------------- /libs/x86_64/touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/libs/x86_64/touch -------------------------------------------------------------------------------- /python_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/python_api/README.md -------------------------------------------------------------------------------- /python_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_api/__pycache__/touch.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/python_api/__pycache__/touch.cpython-36.pyc -------------------------------------------------------------------------------- /python_api/touch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/python_api/touch.py -------------------------------------------------------------------------------- /python_api/touch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobbleKeyboard/android_touch/HEAD/python_api/touch_test.py --------------------------------------------------------------------------------