So the problem is that every library in Android studio must be included as module (copied).
I have HomeApp project at Home, Also i have WorkApp project at Work, i also have a MyLib library that i am using in both projects.
The thing is that i am not able to update library easily.
When at work, i want to be able to change library, update it, add new classes... And to be able to commit changes to git, then i want to get home, just pull all library changes and use newest version of library. And do the same at home: update lib, commit... And then at work just pull and have newest lib.
With Eclipse it was possible because i was able just open existing library and use it. With Android Studio i must import module every time i want to have newest lib version.
I don't want to publish my library changes on maven and then use it as dependency in projects. It is long process that i want to avoid.