Start external activity while phone is locked

Viewed 1829

I want to be able to start an Activity that is not part of my app while the device is password locked. How could I do this, if it's even possible?

Note: I am well aware of putting getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED); within the onCreate of my activity. This will not work, though, as I'm not starting my own activity, but a 3rd party one that is outside of my app.

3 Answers
Related