Jonathan Peppers

Results 525 comments of Jonathan Peppers

This is a pinned issue at the top of the issues page: * https://github.com/dotnet/android-libraries/issues/764 What happens is: * Google moved types from one library to another * We just mirror...

Is everyone here using MAUI? Is the actual problem you're updating packages newer than what MAUI depends on? Doing that will end up in a lot of transitive dependency pain....

Ideally MAUI would only update their underlying packages for major releases, like going from .NET 9 to 10. It seems like them bumping the packages frequently is also an issue.

> why do we need to include more fresh versions? Yes, it doesn't seem like you would always need the latest. Is this just something that dependabot is doing (or...

> the Xamarin.Firebase packages (especially Xamarin.Firebase.Crashlytics,Xamarin.Firebase.Analytics) are not currently compatible with .NET 9.0. How are they not compatible? Do you get an error message? What is it? Thanks!

As an alternative, you can do this to force a .NET 8 app to target API 35, in `AndroidManifest.xml`: ```xml ``` This will cause a build warning (message improved in...

That is a common issue pinned at the top here: * https://github.com/dotnet/android-libraries/issues * https://github.com/dotnet/android-libraries/issues/764 It can be resolved by updating packages, usually. Sometimes it requires you to list more dependencies...

What is the exact error message? You can use `net8.0-android` packages in `net9.0-android` projects, so I don't know what error it would be.

Did Google just change the underlying behavior? * https://cs.android.com/androidx/platform/frameworks/support/+/androidx-main:core/core/src/main/java/androidx/core/view/accessibility/AccessibilityNodeInfoCompat.java;l=3115-3124?q=AccessibilityNodeInfoCompat You could maybe find their git history and see if that changed recently.

All of the packages here are just C# bindings for the Java/Kotlin implementation. They only thing we *could* have done here, is bound this API in C# as a `bool`...