eclipse - Android app is stuck installing not from Google Play -
I have an app that uses push notifications via parse.com and posts it to the server .
The app works well with Eclipse, but when I try to install it from a download via a link in the browser it gets trapped.
I am using this line which extends into the class according to parse tutorials:
parsing installation.stustant installation (). SaveInBackground ();
It is stuck on this line and does not get as per my logs. Does anyone know why?
After dealing with this for a while, I came to know that all started in the application class, but I am saving it before posting with it. ParseInstallation.getCurrentInstallation (). Save () instead of ParseInstallation.getCurrentInstallation (). SaveInBackground (); The difference is that Infocation creates a different thread to save infantation and another thread protects it without making the responsibility of thread thread. So I have a thread that keeps all the apps out of my app and I saved the save () in that thread. Who worked for me.
Comments
Post a Comment