Jonathan Pobst

Results 175 comments of Jonathan Pobst

This seems to be due to a difference in how the `FragmentManager` class and the `SupportFragmentManager` class function: ![image](https://user-images.githubusercontent.com/179295/96914816-187f8a80-146b-11eb-9d49-223fbfa77c00.png) 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: ![image](https://github.com/xamarin/AndroidX/assets/179295/5be1ac5c-1da0-4da4-b1f4-c47c64add5ab) New package example: ![image](https://github.com/xamarin/AndroidX/assets/179295/2c12ca18-4362-495e-91b3-11cae9e5f707) 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...