Code Monkey home page Code Monkey logo

remote-touchscreen's Introduction

Remote Touch

demo.webm

demo.mp4

This repo contains the necessary tools which make it possible for one device to act like a touchscreen for (an app running on) some other device, without any special access privilege required on any device.

It does NOT require any quirks like adb or Accessibility Service, and does NOT require root privileges.

Instead, it requires the target app (the one to be remotely controlled) to be specially modded for the purpose (detailed instructions below). As such, it can be utilized to control apps running on normal devices over, for example, the same wifi network. This allows for silent remote controllability without any overlays or permissions. Moreover, it supports all sorts of touch events (like multi touch gestures) and emulates them as-is on the target app with negligible latency.

Structure

This project consists of two parts:

  • Remote Touch Client app: the app running on the controlling device, acting as the touchscreen. Its source code is located in client-app directory. You can find a built apk here. It's background is a lazily updating screenshot of the target app (doesn't work for SurfaceViews).

  • A target app: This app receives the touch gestures made by the user on "remote touchscreen" (the client app).

    It is actually an app modified so as to host a websocket server which receives and injects into itself these gestures.

    The user (you?) has to generate a "target app" themselves. Most simple android apps can be transformed into a target app by following a procedure outlined below.

    The example video above uses the "VLC for Android", and "Multi Touch Test" as the target apps. The modified apk in use (for Multi Touch Test) is available in built-samples/sample-target-app for you to try.

A third part of this project is the RTScript, which is a quick n dirty single file java program that automates modification of an app into "target app", using apktool, our lord and saviour.

The Instructions

to turn any* app into a target app for Remote Touch:

*The app is should not respond negatively to unpacking/repacking by apktool.

Way 1) Using the automatic patching script (RTScript.jar)

  1. Download the RTScript/out/RTScript.jar, place it in an empty folder.

  2. Open a terminal window (or command prompt) in the same folder as the one containing RTScript.jar.

  3. Run java -jar RTScript.jar path/to/your-file.apk.

    Ignore the terminal deprecation warnings.

  4. If everything goes well, you will find your-file.modified.unsigned.apk in that same folder.

  5. Zipaign and sign this generated apk. If you have no idea how that's done, follow these steps:

    5.1: Copy this generated unsigned apk into an empty folder.

    5.2: Download and place uber-apk-signer.jar into this folder.

    5.3: Run java -jar uber-apk-signer.jar -a .

    5.4: You will find a debug signed apk in the same directory, ready to be installed and used as a target app.

Way 2) Manual Steps (If that's your thing)

  1. Unpack the apk of the app (you want to turn into a target app) using apktool d input.apk

  2. Make sure the AndroidManifest.xml has <uses-permission android:name="android.permission.INTERNET"/> inside the manifest tag, as well as the attribute android:usesCleartextTraffic="true" for application tag.

  3. Find the launcher (Main) activity using the same AndroidManifest.xml. Locate the smali file for that activity (without any $ sign in the filename).

  4. Open the smali file described in the previous step, and search for the line which beginsinvoke-super {p0 and has a ->onCreate(Landroid/os/Bundle;)V towards its end. This is the statement which calls super.onCreate inside the onCreate method of said activity. Insert the below line right after said statement:

    invoke-static {p0}, Lcom/tg/touchdelegate/TouchWs;->startIt(Landroid/app/Activity;)V

  5. Now simply copy all the contents of smali-files folder (which at present are a com and an org folder) inside any one smali folder (the smali folders are named smali, smali_classes2, smali_classes3, and so on), preferably the last one. You may even create a new empty smali folder (numbered one-greater than the last one) to paste the contents into.

  6. Now simply run apktool b input, which would build the apk into input/dist/input.apk (if successful). Now zipalign and sign this apk. You're done.

remote-touchscreen's People

Contributors

savsch avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.