Matt O'Connor

Results 7 comments of Matt O'Connor

The problem with running on iOS was caused by the addition of fast column setters #902. You need to remove or #ifdef the code that was added for fast column...

I am also seeing this problem, and it occurs when trying to display either a Snackbar or Toast on a release build on iOS. The odd thing is that Snackbar...

This problem appears to be caused by the use of FrozenSet in AlertView.macios.cs. If you look at the stack trace, it's occurring in AlertView.Initialize, where the Children property is being...

I submitted PR #1767 that fixes this issue and doesn't require enabling the interpreter.

I think the non-async version could be added to TableQuery pretty easily: ``` public bool Any() { var selectCommand = Take(1).GenerateCommand("1"); selectCommand.CommandText = $"select exists({selectCommand.CommandText})"; return selectCommand.ExecuteScalar(); } public bool...

I just ran into the same problem. As the OP mentioned, when NativeLibrary determines the search path, it looks like it uses RuntimeInformation.OSArchitecture to determine the rid. RuntimeInformation.OSArchitecture will return...

> [@mjo151](https://github.com/mjo151) This is done with this PR [#1326](https://github.com/dotnet/android-libraries/pull/1326) Thank you!