A third party SDK we’re using requires initialisation from Application Object onCreate.
it spits this message:
“The Parse push service cannot start because Parse.initialize has not yet been called. If you call Parse.initialize from an Activity’s onCreate, that call should instead be in the Application.onCreate”
I call Parse.initialize from main.lua ( using plugin of course ), but while this worked for many sdks
it doesn’t work for Parse, because it needs initialisation as early as possible.
Where can I put code that needs to be in ApplicationObject.onCreate ?