Jonathan Pobst
Jonathan Pobst
I get this error trying to build this project: ``` C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\34.0.145\tools\Xamarin.Android.Common.targets(893,3): error XACDJ7028: System.IO.FileNotFoundException: Could not find file 'C:\Users\jopobst\.gradle\caches\modules-2\files-2.1\org.slf4j\slf4j-api\1.7.36\6c62681a2f655b49963a5983b8b0950a6120ae14\slf4j-api-1.7.36.jar'. File name: 'C:\Users\jopobst\.gradle\caches\modules-2\files-2.1\org.slf4j\slf4j-api\1.7.36\6c62681a2f655b49963a5983b8b0950a6120ae14\slf4j-api-1.7.36.jar' at System.IO.FileInfo.get_Length() at Xamarin.Android.Tasks.MonoAndroidHelper.SizeAndContentFileComparer.GetHashCode(FileInfo obj) at System.Collections.Generic.HashSet`1.AddIfNotPresent(T...
> @jpobst Can you install Gradle and/or Android Studio? The other dependencies require gradle to download Android artifacts. I already have Android Studio on my machine, so it apparently requires...
> Aside: how?! I think we're conflating different processes here that have different codebases. The linked `CecilExtensions.cs` code is used for `jcw-gen`, but not for `generator`. `generator` simply looks at...
Closing as GPS packages have been moved to https://github.com/xamarin/AndroidX repository and this repository is no longer used.
The method it is failing on is: ```java class StringsKt___StringsKt extends StringsKt___StringsJvmKt { public static final S onEach(@NotNull S $this$onEach, @NotNull Function1 action) { ... } } ``` While I...
Actually, looking at the `.dll` we build today on .NET 8, the `onEach` method gets removed elsewhere, likely because it isn't valid:  So removing the method with metadata is...
It looks like the `EditedMediaItem` class did not exist in version `1.0.2`, but is now present in the bound `1.1.1` version: 
It looks like `setVideoMimeType` was added in version `1.2.0`, hence it will not be in these bindings.
We no longer maintain that package and do not produce updates for it: https://github.com/xamarin/XamarinComponents/issues/1418
Nullability on returned types from Builders does not match Android API docs and @NotNull annotations
It looks like the actual package for the referenced API is `Xamarin.AndroidX.Core`. Looking at Google's [`androidx.core:core 1.15.0.aar`](https://maven.google.com/web/index.html?q=core#androidx.core:core:1.15.0), the methods are correctly annotated:  However if we look at Google's [`androidx.core:core...