Whelp, most plugins have a success callback that is invoked when the
initialization is finished. You can start the second plugin from the
success of the first for a quick win.
Or you could create a custom event:
https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Creating_and_triggering_eve
I have a plugin that depends on another plugin being initialized first.
Does cordova already provide a documented way of doing that through
channels?
Coming from OSGi I'm thinking of something non-blocking like Plugin B is
only started if Plugin has been started.