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).
Asked
Active
Viewed 553 times
1 Answers
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
-
Not capturing screen(photo) but recording screen(video) – Yoganand.N Apr 23 '15 at 13:35
-
1See [this question](http://stackoverflow.com/questions/25491528/screen-record-android-wear). – kazhik Apr 24 '15 at 00:13
-
You could do a script that repeat these commands then build a video from screenshot? – Tom A Apr 28 '15 at 11:32