Re: Is there a way to wait for another plugin to initialize

2016-06-21 Thread Simon MacDonald
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:

Is there a way to wait for another plugin to initialize

2016-06-21 Thread Philipp Kursawe
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.