Marius Kahmen

Results 7 comments of Marius Kahmen

Hey guys, had excactly the same problem. after digging a bit into simons code, I found out, that the IOException came from `byte[] payload = (byte[])message.obj;` in the incomingHandler (ClientThread.java)....

Same for me. Any update on that? Did you solve it @mike-rowley ?

@mike-rowley I used a Replace as a workaround. Very dirty, but no idea how I could solve this... `FileSystem.Current.LocalStorage.Path.Replace("/../Library", "")`

BTW this works (for whatever reason... path still has /../Library in it, but it's able to save the file: ``` IFolder rootFolder = FileSystem.Current.LocalStorage; IFolder folder = await rootFolder.CreateFolderAsync("TestFolder", CreationCollisionOption.OpenIfExists);...

@alexbleks I ran into the same issue but don't really understand how you fixed it... Why should adding `` help? Haven't added it yet. My `[Application]`-Class is exactly like in...

@brminnick Thank you for your explanation. Still one feature missing: If I kill my app (or restart the phone), I won't receive messages. Do you have a solution / an...

@alexbleks Thank you for your reply. I still don't understand the relationship between your manifest/receiver and the Service/Application-class. [Xamarin doc](https://developer.xamarin.com/guides/android/advanced_topics/working_with_androidmanifest.xml/) says: > Our goal is that 99% of our users...