we are working on an android project and want to develop two executables that work together: a UI application and the end of an AAR library. The idea is that AAR can be used in the future with other user interfaces.
So, we have one developer working on an AAR project, and another developer working on a user interface project. Is there a way to debug two at the same time; that is, run UI + AAR and trace between them, set breakpoints and clocks on both sides, etc.?
I did a similar thing in .NET, developed the UI EXE + DLL interface with several "projects" in one "solution", debugging all this at once; this is a really good way to develop. Is there any way to achieve this using android studio?
Thanks.
Chris source share