If you have a loop or something that needs that a callback be execute more than once (for example a download progress that is being executed on java) you may noticed that the callbacks, after of being executed one time, doesn't work anymore.
This issue is well known :
The callbacks for some reason, doesn't get executed because you are not keeping the callback (the function is ready and doesn't need to be executed anymore).
You can easily solve this problem using the following code :
Instead of use our callbacks , we will return a plugin result, you don't need to import anything (cordova needs to be imported obviously).
You need to use the previous example if your code is not async , if you need to execute a callback in async mode, you need first return something but without response like this :
1 Comment