João Matos

Results 445 comments of João Matos

@jonathanpeppers added some docs explaining how to setup post-build event for Visual Studio here: https://mono.github.io/Embeddinator-4000/getting-started-java-android.html

This bug is caused by an external generator from Xamarin.Android that we call for objects that inherit from `Java.Lang.Object`. The task code is here: https://github.com/xamarin/xamarin-android/blob/e5b1c92c192612d1a292a0ce35ea77a72f38eb48/src/Xamarin.Android.Build.Tasks/Tasks/GenerateJavaStubs.cs#L134 Other related files are here:...

I am not sure who would be best to look at this one. @jonathanpeppers any idea?

FWIW we also rely on `[Register]` for this purpose in the Java backend, a behaviour we inherit from Xamarin.Android Java interop implementation.

Hey, arrays are still not supported in Java. It's the next feature to be supported (PR https://github.com/mono/Embeddinator-4000/pull/508).

Actually, looking again at the stack trace, this error seems related to arrays in Java.Lang.Object derived types, right? If that's the case, then my PR only implements support for non-Java.Lang.Object...

I changed the title to track the issue more accurately. Not sure when this might be fixed though because it's not a limitation of Embeddinator generator itself but of the...

I was going through the exception message in the trace you posted: `Only primitive types and IJavaObject is supported in array type in callback method parameter or return value`. Maybe...