Has anyone figured/found out how Android libraries are intended to work in Android studio?
I have not been able to find any documentation on this yet (the documentat
Attach android library into android studio. If you have any idea about library then add directly for eg.
(this is the picasso library)
compile 'com.squareup.picasso:picasso:2.3.2'
If you want to create our own library then follow these steps.
Choose New module and select Android Library.
Declare Library Name and package name.
Now finally your library has been created you can use easily.
Click on Dependencies Tab inside small window and click Green color plus button.
And select Module dependency you can see your library file.
select library and ok