How to Log.d messages from another process of the same app?
I need to make a Service that must run in a separate process so that it still run when the MainActivity is closed. And I use android:process=":myprocess"
in manifest for that. If I don’t insert this in the project manifest and run the app, I can see the massages from the service, but when I start it in another process the messages from Log.d
are no longer shown. Is there a way to make it work ?