Jonathan Pobst

Results 175 comments of 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: ![image](https://github.com/user-attachments/assets/feb5e02a-52d7-4524-bc20-8e070984b34a) 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: ![image](https://github.com/user-attachments/assets/66e1672e-9ce2-4e98-927c-059c8e6ecc2d)

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

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: ![Image](https://github.com/user-attachments/assets/cd89dcf4-c606-418a-8a68-da80b66a896e) However if we look at Google's [`androidx.core:core...