GraphicsViewTapGestureRecognizer is a .NET MAUI app that demonstrates an issue with a TapGestureRecognizer attached to a GraphicsView. On the only physical Android devices we've been able to test with (i.e. Samsung Galaxy A10 with Android 11, Nokia 310 with Android 10) tapping the GraphicsView causes the app to crash. This behaviour didn't occur with Microsoft.MAUI.Controls 10.0.31 but does with 10.0.40 and 10.0.41.
iOS and Android Emulators (as well as Windows) appear unaffected by the issue.
The workaround is to use the GrahicsView StartInteraction event in place of the TapGestureRecognizer but the latter event seems to fire later than the former which makes the workaround unusable in our commercial app which has GraphicsViews within a CollectionView (each CollectionView item has an attached TapGestureRecognizer which fires before the GraphicsView StartInteraction event but we need to intercept the GraphicsView being tapped).