I have a special need that requires the plugin to be long lived across activities. By tying the receiver to one activity, it cause a intent filter leak. I would like to be able to extend the plugin and register the receiver on Initialize however I want. By having the fields private, this make it hard to achieve.
I'd prefer not to open up the internals of the plugin, as that would increase the maintenance burden by broadening its API. It's not very big, so how about just copy / pasting it into your own plugin?
...vity manager
I have a special need that requires the plugin to be long lived across activities. By tying the receiver to one activity, it cause a intent filter leak. I would like to be able to extend the plugin and register the receiver on Initialize however I want. By having the fields private, this make it hard to achieve.