Jos Huybrighs
Jos Huybrighs
I can do a pull request since also the iOS renderer (as I found out the last couple of days) exhibits the same missing support. But, as you mentioned Xamarin...
@robinrodricks Thanks for the quick reaction and the `SslProtocolActive `property. I did a test with the 39.4.0-BETA1 .net6 dll and these are the results: **1. Connect with manual config and...
Did some further tests and can report that the error occurs starting with v5.42. On v5.41 no error occurs and the file is successfully created.
I had the same issue. Solved it by changing OnInterceptTouchEvent in the android renderer to: ``` public override bool OnInterceptTouchEvent(MotionEvent e) { BringToFront(); return false; } ```