I am learning to build Android shared libraries that can be used with different projects. I got a few questions regarding this subject. Before I go into the questions, below is what I have done so far:
- Create a library project
- Create another application project and import above library as a module
My questions are:
- Is the library project's code automatically synchronized with the one imported into application projects? How it can be achieved?
- If not, what else I can do to make sure I just need to update the shared library once?
I am using Android Studio IDE.
Thank you,