Erel I read in one of your posts that we cannot write a library to extend application onCreate. Here is the problem, I am using the Parse SDK. I wrote a library to wrap it, similar to what Agraham has recently done.
To support receiving of parse push messages, Parse states that when your app in no longer in memory, we need to run Parse.Initialize in Application onCreate such that Parse.initialize is called before the ParsePush service is started to.
I tried "extends" application in a library and even called super.oncreate in the call after my parse.initialize but like Agrahams parse library, weird things happen in the b4a runtime (DIP don't calculate properly for example)
Without extending application How would I solve this problem ?
To support receiving of parse push messages, Parse states that when your app in no longer in memory, we need to run Parse.Initialize in Application onCreate such that Parse.initialize is called before the ParsePush service is started to.
I tried "extends" application in a library and even called super.oncreate in the call after my parse.initialize but like Agrahams parse library, weird things happen in the b4a runtime (DIP don't calculate properly for example)
Without extending application How would I solve this problem ?