Why should platform.ready() be used?

I read in some posts people recommending to use platform.ready() before using a native plugin. Why is this? What does it do?

you can not use native plugin until platform.ready() executed.
execution of platform.ready() indicate that your app is fully loaded and all native plugin used in your app are available.

1 Like