简体   繁体   中英

ADB No Device Found Android

I found Kitkat version allow to record screen using adb commands, So i am trying to record video using adb shell command with below command.

Official Reference this

$ adb shell screenrecord/sdcard/video.mp4

i am using HTC Desire 620g , Driver is updated, USB debugging is checked, it's connected to windows system with MTP Mode.

also tried Revoke USB debugging authorisations.

but still cmd shows this strange behavior ..!

How to solve it..?

在此处输入图片说明

There is a space between screenrecord and the file path:

adb shell screenrecord /sdcard/recording.mp4

Then to download the file:

adb pull /sdcard/recording.mp4

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM