Jonathan Pobst
Jonathan Pobst
Do you have any experience writing code that can interact with proxies correctly? We currently use `WebClient` to perform the download: https://github.com/xamarin/AndroidX/blob/main/util/Xamarin.Build.Download/source/Xamarin.Build.Download/XamarinDownloadArchives.cs#L171
> How do we ("reasonably") test generator changes against e.g. xamarin/AndroidX to ensure we don't break things? I'm not sure NuGet packages are a good answer here. If we wanted...
There is a `CefNet` package for a `WebView`: - https://github.com/CefNet/CefNet/tree/master/CefNet.Modern.Forms There is a very basic `Ribbon` control built in to `Modern.Forms`: - https://github.com/modern-forms/Modern.Forms/issues/21 - https://github.com/modern-forms/Modern.Forms/blob/main/src/Modern.Forms/Ribbon.cs There is currently no `PropertyGrid`...
Another option would be to add a new element to `` like `` that would not be consumed by `ApiCompat`, but would be deserialized and serialized. Instead of: ```xml CP0001...
This appears to have been fixed in .NET 7+ per https://github.com/xamarin/xamarin-android/issues/8120.
This may be an issue with the way Mint chooses to implement its window handling. The same thing seems to happen on Avalonia, this post specifically mentions Mint as well:...
Note that this seems to be a side effect of: https://github.com/xamarin/java.interop/pull/1105 These implementor classes moved from (ex): `mono.android.view` to `android.view`. We are reverting this in: https://github.com/xamarin/xamarin-android/issues/8337 It _may_ be desirable...
Some ideas: If you don't use the method `nativeType()`, you could try removing it from one or both of the interfaces. If you aren't trying to consume or implement either...
Capturing [some discussion on Discord](https://discord.com/channels/732297728826277939/732297837953679412/1204887123954769990) about this: ``` [10:31 AM] jpobst: weird, i would have thought we would just not bind the fields [10:31 AM] Jonathan Pryor: for that lib,...
There is limited support for Java generics, and I think one of the limitations is indeed that the info is lost when using separate binding assemblies. You will likely need...