How to open Android Device Monitor in latest Android Studio 3.1

前端 未结 15 667
说谎
说谎 2020-12-02 17:59

Recently I updated my android studio, after the update, I am unable to find android device monitor option in the tools section. In the previous update it was there in to

相关标签:
15条回答
  • 2020-12-02 18:40

    From Android Studio 3.1 Device Monitor available from the command line only.

    In Android Studio 3.1, the Device Monitor serves less of a role than it previously did. In many cases, the functionality available through the Device Monitor is now provided by new and improved tools.

    See the Device Monitor documentation for instructions for invoking the Device Monitor from the command line and for details of the tools available through the Device Monitor.

    To start the standalone Device Monitor application, enter the following on the command line in the android-sdk/tools/ directory:

    monitor
    
    0 讨论(0)
  • 2020-12-02 18:40

    ADM was deprecated in 3.1 version of android studio and removed from Android Studio 3.2. Android Device Monitor have been replaced by new features and to start Android Device Monitor application in android studio 3.1 and lower, following the commend line android-sdk/tools/ directory:

    monitor

    0 讨论(0)
  • 2020-12-02 18:41

    To start the standalone Device Monitor application, enter the following on the command line in the android-sdk/tools/ directory:

    monitor

    But remember Most of the Android Device Monitor componenets are deprecated after 3.0 For detail info visit this link

    0 讨论(0)
  • 2020-12-02 18:42

    Android Device Monitor was deprecated in Android Studio 3.1 and removed from Android Studio 3.2

    Use Android Profiler introduced in Android Studio 3.0 to measure the cpu utilisation, network, memory etc,. To open Android Profiler: View -> Tool Windows -> Profiler.

    Android Device Monitor has been replaced by some new feature which you can find here.

    0 讨论(0)
  • 2020-12-02 18:47

    To get it to work I had to switch to Java 8 from Java 10 (In my system PATH variable) then go to C:\Users\Alex\AppData\Local\Android\Sdk\tools\lib\monitor-x86_64 and run monitor.exe.

    0 讨论(0)
  • 2020-12-02 18:47

    According to developer docs, it's deprecated now. Please follow these docs: developer link

    0 讨论(0)
提交回复
热议问题