WHAT'S NEW?

Record Android Screen Without Root [ adb Method ]


Have you ever tried to record your android screen 

Yeah it is possible to perform screen capture in your android device without installing any app's on your device .

Requirements : 
> Android Phone [Root Not Required]
> PC
> USB Cable
Java Development Kit (JDK) (Official Link)



Steps to perform screen record on your android -

Step 1: Enable USB Debugging option in your android device

Settings -> Developer Options -> USB Debugging (Tick The Check Box)
Note* - If Developer options is not visible in your settings go to 
Settings -> About Phone -> Software Information -> More -> Build Version (Tap it multiple times until a message pops up that you are now a developer)

Step 2: Install Java Development Kit (JDK).


Step 3: If you have Android SDK already in your PC then it becomes easier.



(If you are a developer then you would have already installed Android SDK)

IF YOU DONT HAVE ANDROID SDK SKIP TO STEP 5

Step 4: Open Android SDK and check if you have installed Google USB Driver plugin ,if not install it and Skip to step 7



Step 5: If you don't have Android SDK then you need ADB(ADB can be used for various purposes like copying a file to VM, installing apps, debugging, etc.)
Step 6.1: Extract ADB to a folder.

Step 7: Then open Command prompt and change to the location of your ADB using command

>If you have already installed Android SDK


cd location/sdk/platform-toolsPaste your code

(replace location with sdk's installed location)

>If you have downloaded ADB


cd adb-location

(replace location with adb folder location , where you extracted it)

and press enter.


Step 8: Now Connect your android phone to your PC using USB cable( Make sure USB debugging is enabled before connecting )

Step 9: Now type in the command -

adb devices
in command prompt and press enter , it will display the connected devices.

Step 10: Type the command 

adb shell
 in the command prompt and press enter .

Step 11: Now type this command in the shell

screenrecord --verbose /sdcard/filename.mp4
you can use any filename you want.




Step 12: Now the recording will start and press " ctrl+c " to end the recording.


Step 13: The recorded file will be stored in the sdcard of your phone.



 ( Comment if you find any difficulties )

- Consider Liking Our Facebook Page - 

> Voila There You Go <

> Made Simple <

0 comments :

Post a Comment