Jonathan Pobst
Jonathan Pobst
This seems to be due to a difference in how the `FragmentManager` class and the `SupportFragmentManager` class function:  Calling the same code, the `SupportFragmentManager` class returns `null` while the...
The remaining issue here seems to be to update the `mapsandlocationdemo-v3` sample to no longer use the obsolete `Android.App.Fragment` so that users don't get pointed down the wrong path. Thus...
Unfortunately this is a historical mistake that would cause too much breakage if we fixed it now. There is a lot of history/discussion/workarounds related to this issue here: https://github.com/xamarin/XamarinComponents/issues/1176
I am very concerned about this `r8` change. If these packages cannot be consumed in an application without our users having to manually download a new version of `r8` and...
I think we should roll back the broken package(s) and release the working ones. We can update the broken ones once we migrate to `net8.0-android`.
Original package example:  New package example:  A future PR will try to remove the `.targets` file completely by moving the remaining line to a common base package.
You should be able to use `JavaCast` to cast to the correct type: ```csharp void ICredentialManagerCallback.OnResult (Java.Lang.Object result) { var r = result.JavaCast (); } ```
Try performing a full build after you add the NuGet to the project. I think the designer requires some things to be built before it will work.
> is it not possible to compile net8 libs with 8 SDK and 6 and classic bits with 6 SDK and use nuget.exe with a .nuspec file to generate the...
https://github.com/xamarin/AndroidX/issues/764