Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio not showing modules in project structure

I am using Android studio and I want to add module to my project like "action bar Sherlock" or jar files, but when I opened the project structure there is no module or library in the menu :\

In intelij it's appearing:

enter image description here

So what's the problem? How can I add these modules in Android studio?

like image 249
Mohamd Ali Avatar asked Sep 28 '13 14:09

Mohamd Ali


People also ask

How do I add a module to a project?

Add a new module to your project by clicking File > New > New Module. Provides a container for your app's source code, resource files, and app level settings such as the module-level build file and Android Manifest file. When you create a new project, the default module name is "app".


3 Answers

Update 19 March 2019

A new experience someone has just faced recently even though he/she did add a library module in app module, and include in Setting gradle as described below. One more thing worth trying is to make sure your app module and your library module have the same compileSdkVersion (which is in each its gradle)!

Please follow this link for more details.

Ref: Imported module in Android Studio can't find imported class

Original answer

Sometimes you use import module function, then the module does appear in Project mode but not in Android mode

enter image description here

enter image description here So the thing works for me is to go to Setting gradle, add my module manually, and sync a gradle again:

enter image description here

like image 142
Nguyen Tan Dat Avatar answered Oct 16 '22 09:10

Nguyen Tan Dat


First, create your Module. You can do that using the default Android Studio Module Wizard (File -> New -> New Module), select Android Library, give it a Name and a package name, and finish. After that you will see that nothing happens. Open the side Gradle Projects Section (should be somewhere on the right panel)

You should see something like this:

enter image description here

Expand your module gradle and run the Run Configurations task. After that refresh the content and refresh the project structure.

It should work now.

like image 39
Aurelian Cotuna Avatar answered Oct 16 '22 08:10

Aurelian Cotuna


Do right mouse click on your project, then select 'Open Module Settings' - then you can add modules to your project..

like image 11
Jis Jose Avatar answered Oct 16 '22 07:10

Jis Jose