2

I want to know whether is it possible to record the screen of Moto 360 wear using android studio or adb. Screen capture is working fine with Android phone/tab but it is not recording with android wear(Moto 360).

Yoganand.N
  • 907
  • 1
  • 10
  • 24

1 Answers1

0

Try this.

% adb -s <phone id> forward tcp:4444 localabstract:/adb-hub
% adb -s <phone id> connect localhost:4444
% adb -s localhost:4444 shell screencap -p /sdcard/capture.png
% adb -s localhost:4444 pull /sdcard/capture.png
kazhik
  • 556
  • 1
  • 5
  • 7