I have android project that Its is now a android library project. I have set up two projects(A and B) that use the library project. So for example when I start project A it uses all of the activities from the lib project. The question is how to now make the library project start a activity from the project A? Lats say that LibActivity is a activity defined in the libProject so for example I have:
**LibActivity1** starts **LibActivity2**
**LibActivity2** starts **LibActivty3**
and now I need LibActivity3 to start **projectA_Activity** or **projectBActivity**
depending on the build
Thanks