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 lib
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:
Expand your module gradle and run the Run Configurations
task.
After that refresh the content and refresh the project structure.
It should work now.