skip to Main Content

When I press on vertical ellipsis
Screenshot 1
It show me this window, So I press on Start Recording
Screenshot 2
Then it show me this error
Screenshot 3
How can I solve this problem?

record the screen on my Emulator
Screenshot 4

3

Answers


  1. Maybe it’s a bad solution.

    But if you need a fast solution. Record the whole screen and crop it so you can only see what you really care about.

    Login or Signup to reply.
  2. Did you allow the permission to the camera in you’r manifest.xml

    must add this

    <uses-permission android:name="android.permission.CAMERA"></uses-permission>
    
    Login or Signup to reply.
  3. Check out this cli tool: https://github.com/Genymobile/scrcpy
    It works very fast and you can record the screen directly to video file with command:

    scrcpy --record=file.mp4
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search