当用户更新应用程序时,PendingIntents 会发生什么?

What happens to PendingIntents when user updates the app?

我知道当用户更新他的应用程序时,数据(如共享首选项文件中的数据)不会被删除,但是预定的广播呢? PendingIntent 是否被取消?

PendingIntents 不会在应用程序更新时被取消或删除。如果您在更新前安排了警报,这些警报将在更新后的预期时间触发。

但是,如果卸载应用程序,所有PendingIntent、警报、私有数据、数据库等都是canceled/deleted。