Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio 3.1 does not showing 'android' option under Tools menu

I am using android studio 3.1 for some development. But Its does not showing android option under Tools menu. Whereas Android studio 3.0 doesn't have this problem.

Here is the screenshot of android studio 3.1 Tools menu:

enter image description here

See missing the android option. I think this is some configuration related problem as it doesn't exist in android studio 3.0. Basically I need Enable ADB Integration option. Is there any way to show the option in Tools menu?

like image 843
0xAliHn Avatar asked Dec 20 '17 11:12

0xAliHn


People also ask

Can t find android in Tools Android Studio?

In Android Studio, you can import (or open) this folder as a project, rather than the outer directory, and the Tools > Android option should appear.

Where can I find Android Tools in Android Studio?

To open the SDK Manager from Android Studio, click Tools > SDK Manager or click SDK Manager in the toolbar. If you're not using Android Studio, you can download tools using the sdkmanager command-line tool.

Where is Configure option in Android Studio?

Open your project in Android Studio and select File > Settings... > Build, Execution, Deployment > Build Tools > Gradle (Android Studio > Preferences... > Build, Execution, Deployment > Build Tools > Gradle on a Mac).


2 Answers

If you're looking for a way to fix the buggy connection to a physically connected USB device without restarting Android Studio, this might help:

Preferences > Build, Execution & Deployment > Debugger

Then check or uncheck the box Use libusb backend

enter image description here

like image 95
friederbluemle Avatar answered Oct 16 '22 13:10

friederbluemle


Google has officially removed the Memory Monitor tool in the Android studio 3+ and brings new Tool that is Memory Profile.

From the documentation for the tool:

To open Memory Profiler, follow these step:

  1. Click View > Tool Windows > Android Profiler (you can also click Android Profiler in the toolbar).
    1. Select the device and app process you want to profile from the Android Profiler toolbar. If you've connected a device over USB but don't see it listed, ensure that you have enabled USB debugging.
    2. Click anywhere in the MEMORY timeline to open the Memory Profiler.

See the Google's Official Statement.

like image 39
Yash Avatar answered Oct 16 '22 15:10

Yash