2020-01-15 21:51:49 -05:00
|
|
|
---
|
2023-01-18 11:50:40 -05:00
|
|
|
title: "Control an Android Device Remotely using Scrcpy"
|
2020-01-15 21:51:49 -05:00
|
|
|
date: 2020-01-09T21:36:30-05:00
|
|
|
|
draft: false
|
2022-01-02 14:24:29 -05:00
|
|
|
tags: [ ]
|
2023-01-05 14:04:45 -05:00
|
|
|
medium_enabled: true
|
2020-01-15 21:51:49 -05:00
|
|
|
---
|
|
|
|
|
|
|
|
With [Scrcpy](https://github.com/Genymobile/scrcpy) you can control an Android device remotely!
|
|
|
|
|
2022-06-11 22:54:02 -04:00
|
|
|
![1578623897330](/files/images/blog/1578623897330.png)
|
2020-01-15 21:51:49 -05:00
|
|
|
|
|
|
|
The `README` on the Github page has all the information you need though it boils down to a few simple steps.
|
|
|
|
|
|
|
|
1. Install `scrcpy`.
|
|
|
|
```bash
|
|
|
|
sudo snap install scrcpy
|
|
|
|
```
|
|
|
|
2. [Enable adb debugging](https://developer.android.com/studio/command-line/adb.html#Enabling) on your device
|
|
|
|
3. (Optional for remote capability) Enable adb over TCP/IP on your device
|
|
|
|
```bash
|
|
|
|
adb tcpip 5555
|
|
|
|
```
|
|
|
|
4. (Optional Continued) Connect to the device
|
|
|
|
```bash
|
|
|
|
adb connect DEVICE_IP:5555
|
|
|
|
```
|
2020-02-16 17:46:18 -05:00
|
|
|
5. Run `scrcpy`
|