TouchBridge turns an Android phone into a gesture, mouse, and keyboard controller for Windows PCs. The mobile app sends gestures, mouse movement, keyboard input, and custom button events, and the Windows Agent receives them to execute hotkeys, Python code, PowerShell scripts, or other mapped actions.
- Android gesture pad
- Tap, double tap, long press, and swipe
- Two-finger tap and swipe
- Three-finger tap
- Device selection for multiple Windows PCs
- BLE connection
- USB connection without ADB
- Android Open Accessory direct connection attempt
- USB tethering/cable network fallback
- Custom buttons
- Add button IDs and display labels on Android
- Sync button lists to the Windows Agent
- Map each button to an action on Windows
- Mouse pad
- Pointer movement, scrolling, left click, and right click
- Sensitivity control in the Android app
- Low-latency delta transport for BLE connections
- Keyboard remote
- Type into Windows from the Android soft keyboard
- Enter and Backspace support
- Typed text is not shown in the Android input field
- Windows action mappings
- Hotkeys
- Python code
- PowerShell scripts
- Windows tray background operation
- Korean and English UI support
- Optional Android vibration after successful gesture sends
- Runtime messages now use the compact TouchBridge protocol instead of the previous JSON format.
- BLE uses MTU negotiation, high connection priority, and no-response writes for realtime input where supported.
- Mouse input uses short BLE delta messages to reduce latency and stutter.
- The keyboard input field hides typed text without returning an empty visual transformation, avoiding Compose/IME offset crashes.
- Keyboard text is chunked before Android transport and before Windows
SendInputexecution to reduce long-input stalls.
android_app/
Android mobile app
window_app/touchbridge-agent/
Windows Agent Rust app
release/
Distribution artifacts and installation guides
Distribution artifacts are available in the release/ folder.
- Windows Agent:
release/windows/TouchBridge-Agent-Windows.exe - Android test APK:
release/android/TouchBridge-Android-debug.apk - Android release unsigned APK:
release/android/TouchBridge-Android-release-unsigned.apk - Korean release guide:
release/README_KO.md - English release guide:
release/README_EN.md
TouchBridge-Android-release-unsigned.apk is not signed. Sign it with a release keystore before distributing it to end users.
- Run TouchBridge Agent on the Windows PC.
- Install and open the Android app.
- Select the PC to connect to from the first screen.
- Approve the trust/pairing prompt for first-time BLE devices.
- After connection, use the bottom tabs to choose gestures, buttons, mouse, or keyboard input.
- Add custom buttons from the button screen or app settings if needed.
- Map each custom button ID to an action in the Windows Agent.
- Run the Windows Agent.
- Tap "Connect new device" in the Android app.
- Select a discovered TouchBridge BLE device.
- Use the Gesture Pad after the connection succeeds.
If BLE discovery fails, check Windows/Android Bluetooth state and Android Bluetooth permissions.
- Use the
Mouse Padtab after connecting to move the Windows pointer from Android. - BLE mouse movement is treated as realtime input, so stale movement is dropped instead of blocking later input.
- The keyboard tab receives focus and IME input, but typed characters are not rendered in the Android input field.
- Keyboard text is split into compact messages and executed on Windows through Unicode
SendInput.
TouchBridge USB does not use ADB. Android SDK, adb, and Developer Options are not required.
- Run the Windows Agent.
- Connect the Android device to the PC with a USB cable.
- Tap the USB device card in the Android app.
- Allow the USB permission prompt if it appears.
- If direct USB connection fails, enable USB tethering/cable network from Android USB options and try again.
If Windows Firewall prompts you, allow TouchBridge Agent on private networks so the USB cable network fallback can work.
cd window_app\touchbridge-agent
cargo buildRelease build:
cd window_app\touchbridge-agent
cargo build --releasecd android_app
.\gradlew.bat :app:assembleDebugRelease unsigned APK:
cd android_app
.\gradlew.bat :app:assembleReleaseAfter building, copy these files into release/.
window_app/touchbridge-agent/target/release/touchbridge-agent.exe
android_app/app/build/outputs/apk/debug/app-debug.apk
android_app/app/build/outputs/apk/release/app-release-unsigned.apk
The current release folder uses these names.
release/windows/TouchBridge-Agent-Windows.exe
release/android/TouchBridge-Android-debug.apk
release/android/TouchBridge-Android-release-unsigned.apk
- The Android release APK is unsigned unless release signing is configured.
- Direct USB access can be limited by Windows/Android driver binding.
- USB fallback may require USB tethering/cable network and Windows Firewall permission.
- The Windows Agent is currently distributed as a standalone exe, not an installer.
See the LICENSE file.