Is it possible to have an external repo inside the App repo and be able to update codebase of that external repo directly from Android Studio, just like one is able to do with pods in xCode?
I know about submodules but this seems like much hassle with many many problems (like refactoring)
I have a repo which contains some utility commons which are used by every version of rebranded App. Right now this is cloned in every app separately and when something is updated in those utils I need to update it in every rebranded app manually.
I would like to be able to update this utility repo from the App project I actually work on, and the changes should be automatically visible in every App that uses this repo.
Is this possible?