skip to Main Content

Debugger Options Not open when ctrl+m in Android Studio Bumblebee when running react native app

3

Answers


  1. Chosen as BEST ANSWER

    Accessing the In-App Developer Menu When CTRL+M does Not Work In android Studio BumbleBee So open Terminal and Type (adb shell input keyevent 82) because in Android Studio BumbleBee I am facing this Problem


  2. You will have to enable the emulator to run in a different window first, which would allow you to use the keyboard shortcuts

    To run the emulator in a separate window instead go to File > Settings
    Tools > Emulator (Android Studio > Preferences > Tools > Emulator on macOS) and deselect Launch in a tool window

    Reference
    https://developer.android.com/studio/run/emulator#run-emulator-studio

    For mac os
    enter image description here

    Login or Signup to reply.
  3. The root cause is the emulator launch in a tool window by default in Bumblebee.
    To fix it by setting the emulator as a standalone application:

    1. Android Studio > Preferences > Tools > Emulator (cmd + ‘,’)
    2. Deselete "Launch in a tool window", and click Apply button.
    3. Restart your emulator.
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search