Reputation: 917
I would like to know if there is any possibility to mirror my android device in real time using android studio? Or anything else that may be used just with an usb or hdmi cable with no required registration? I tried a couple of little software apps so far but there is a delay consinsting in more than 10 seconds until the action is mirrored on the pc. Thank you in advance.
Upvotes: 7
Views: 14837
Reputation: 1160
Now you can do it with Android Studio https://developer.android.com/studio/preview/features#device-mirroring
Upvotes: 4
Reputation: 31
Now this feature is available in Android Studio Electric Eel Yay!
Preference > Experimental > Device Mirroring
Upvotes: 3
Reputation: 824
I am using Vysor which doesn't need registration, but free version limits the resolution, so it may not be optimal for certain purposes
Edit, I just discovered scrcpy which seems to work way better and even supports copy-pasting from PC to device
Upvotes: 14
Reputation: 4784
You can try AllCast. http://www.omgchrome.com/cast-android-mirror-chrome-desktop-pc/
or may be, you can first record your screen and play it back later by using adb shell screenrecord /sdcard/demo.mp4 and pull the file back using adb pull /sdcard/demo.mp4
Upvotes: -1