You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using Parse for all our Push Notification needs. In our latest release we updated the Parse SDK to 1.12.0 and we turned off the local datastore, as we were not using it and it somehow caused our Installations not to be saved on Parse properly (saveEventually would never finish).
Since that time, some of our users have been experiencing the following crash, some of them multiple times:
Unfortunately, this doesn't happen on any of our devices we have in the office, so I can't get the file in question from the device. This ties into #371. Being able to upload the file in question for debugging would definitely be helpful.
The text was updated successfully, but these errors were encountered:
The crash is coming from ParseBroadcastReceiver, most likely from ParseInstallation.getCurrentInstallation()
Where is your Parse.initialize(...) code? This code registers ParseInstallation as a ParseObject subclass and without it will initialize them incorrectly as ParseObjects. If it's not in your Application#onCreate(), you'll get this error whenever ParseBroadcastReceiver is launched, such as android.intent.action.BOOT_COMPLETED, android.intent.action.USER_PRESENT, or any other intent-filters you have on this receiver.
Thanks for the super fast response and pointing that out @grantland. It makes sense and is probably the reason why this is happening. We recently put the call to Parse.initialize(...) and a call to ParseConfig.getCurrentConfig() into a background operation because we noticed ParseConfig.getCurrentConfig() was slowing down the start time of our app.
I moved the Parse.initialize(...) outside of that background operation now and will monitor the issue going forward.
We are using Parse for all our Push Notification needs. In our latest release we updated the Parse SDK to 1.12.0 and we turned off the local datastore, as we were not using it and it somehow caused our Installations not to be saved on Parse properly (saveEventually would never finish).
Since that time, some of our users have been experiencing the following crash, some of them multiple times:
Unfortunately, this doesn't happen on any of our devices we have in the office, so I can't get the file in question from the device. This ties into #371. Being able to upload the file in question for debugging would definitely be helpful.
The text was updated successfully, but these errors were encountered: