Teoman Soygul
Teoman Soygul
When I implemented this, data property did not accept nesting and only string data type was supported in `data` according to GCM docs. Need to check if this is still...
Never tried on an iOS device but used to work on Android for sure. If Android devices cannot receive messages too, then Google APIs might have changed and this library...
also merged another relevant issue: Close connection and raise an event in case of "Connection Draining" message from CCS
Good point. I may include this in the next release with package updates. Or I might remove the entire memory leak protection code and make a comment linking to your...
I didn't write the Mantis plugin myself, it was contributed to the project by someone else. By a quick look, I couldn't spot the reason for the issue. If you...
Maybe. Since the original implementer didn't have a similar issue, maybe there is something wrong in your code.
Now it's `false` by default however this makes debugging harder. We can consider enabling this when `ReleaseMode == false`;
Logging is disabled by default in master so shouldn't be a problem. Alternatively you can adjust directory permissions or handle log events in your app and write them to your...
Actually this: ``` csharp var serializer = this.CustomInfo != null ? new XmlSerializer(typeof(Report), new[] { this.CustomInfo.GetType() }) : new XmlSerializer(typeof(Report)); ``` can just be this: ``` csharp var serializer =...
Yeah, specifying only the base type `CustomInfo` as the extra type for deserializer might not be enough. Never needed the custom info myself so never looked for a solution. Anyway,...