How to Mirror Android Screen ON ALL Operating Systems with Scrcpy

Опубликовано: 02 Ноябрь 2024
на канале: Positivity Is The Key
1,916
131

How to Mirror Android Screen ON ALL Operating Systems with Scrcpy.
Scrcpy is an open-source screen mirroring application that allows control of an Android device from a Windows, macOS, or Linux desktop computer.

Scrcpy application provides display and control of Android devices connected to USB or Wifi

Just Make sure you enable adb debugging on Android devices.

-------Links & commands----

Linux---------
Using USB:--------
sudo apt update
sudo apt install snapd
sudo snap install scrcpy
scrcpy
Using Wifi:--------
sudo apt-get install android-tools-adb
or if it doesn't work
sudo apt-get install adb
adb tcpip 5555
adb connect Android_IP_Address:5555
replace Android_IP_Address with your device IP address
scrcpy

Windows 10/8/7----------
Using USB---------

1- Download SDK platform-tools zip file: https://developer.android.com/studio/...
2- Try one after one until you see that is connected to your device
. adb devices
./adb devices
./adb.exe devices
3- download the latest package of scrcpy: https://github.com/Genymobile/scrcpy/...

Using Wifi--------

1- Try one after one until you see that is connected to your device:
adb devices
./adb devices
./adb.exe devices
2- adb tcpip 5555
3- replace device IP address by your phone IP address:
adb connect -device IP address-:555
or
./adb connect -device IP address-:555
or
./adb.exe connect -device IP address-:555

MacOS Catalina-------------
Using USB--------- -----------

1- Install homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Hom...)"
2- brew install --cask android-platform-tools
3- brew install scrcpy

Using WIFI:
1- adb tcpip 5555
2- adb connect -device IP address-:555
replace device IP address by your phone IP address
3- scrcpy

Thanks for watching see you next time.