cesarmax
cesarmax

Reputation: 434

creating a pending intent to start a non system app

I've read plenty of doc, but I still can't figure it out.

Are we allowed to start a 3rd party app(NON SYSTEM APP like as alarm, notification. etc) with a pending intent?

i.e.:

App1

App2

I haven't found 1 single example doing this. And according to the doc. you can pass a pending intent to a 3rd party app. It does not specify a system app

does it make sense?

Upvotes: 0

Views: 91

Answers (1)

David Wasser
David Wasser

Reputation: 95578

Yes, you may launch anything you want with a PendingIntent. As long as the component you want to start is exported (publicly available).

Upvotes: 1

Related Questions