I’m trying to make an ActivityGroup which has it’s own interface, which should be persistent between Activities.
I have it working for my own Activities. But when I try to launch a 3rd party activity (from it’s Intent{action=”ACTION_HOME”, category=”CATEGORY_LAUNCHER”}) I get a java.lang.SecurityException because the Activity I want to start does not have the same UID as the calling Activity. Does anyone knows how to cirumvent this?
What you want is not possible in Android, for security reasons, as the error message indicates.