What is an Android PendingIntent?

Technology CommunityCategory: AndroidWhat is an Android PendingIntent?
VietMX Staff asked 3 years ago

Intents are the standard messaging mechanism in Android that expresses the user’s intention to perform some work.

PendingIntent specifies an action to take in the future. It lets you pass a future Intent to another application and allow that application to execute that Intent as if it had the same permissions as your application.

By giving a PendingIntent to another application, you are granting it the right to perform the operation you have specified as if the other application was yourself (with the same permissions and identity).