How to sequentially start activities across different Android modules in Kotlin?

40 Views Asked by At

I have an Android project with two modules, let's call them Module A and Module B. In Module A, I have two activities, A and B. In Module B, I have an activity named X. I'm trying to achieve a sequential flow where I start Activity X from Activity A and then start Activity B from Activity X.

whenever i am trying to do so using intent or using navigator interface,i am getting circular dependency error.

0

There are 0 best solutions below