You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Note:** First boot may take some time as the Android emulator needs to fully initialize. When everything is ready, the device will appear in the web interface as shown in the screenshot above.
90
92
91
-
```bash
92
-
scrcpy -s localhost:5555
93
-
```
93
+
### Connect via ADB
94
+
95
+
If you need direct ADB access to the emulator:
96
+
97
+
```bash
98
+
adb connect localhost:5555
99
+
adb devices
100
+
```
101
+
102
+
**Expected Output:**
103
+
104
+
```
105
+
connected to localhost:5555
106
+
List of devices attached
107
+
localhost:5555 device
108
+
```
109
+
110
+
### Use scrcpy to Mirror the Emulator Screen
111
+
112
+
For a native desktop experience, you can use scrcpy:
113
+
114
+
```bash
115
+
scrcpy -s localhost:5555
116
+
```
94
117
95
-
> **Note:** Ensure `scrcpy` is installed on your host machine. [Installation Guide](https://github.com/Genymobile/scrcpy#installation)
118
+
> **Note:** Ensure `scrcpy` is installed on your host machine. [Installation Guide](https://github.com/Genymobile/scrcpy#installation)
96
119
97
120
## 🚧 **Roadmap**
98
121
@@ -101,7 +124,7 @@ To simplify the setup process, you can use the provided [docker-compose.yml](htt
0 commit comments