How is it possible to share an object between a service running in a specific process and the rest of my Android app ?
In my manifest I set process="com.test.myprocess"
to the service declaration.
I initialize a "session" object when my user login in himself on the app. Then I start an Android service and the session object is injected in it with Android Annotation. But when I do session.getUuid()
from my injected session in my service, I always get "null".
If I do the same in the process corresponding to my app (e.g in the UiThread) the value is not null.
Thanks