I am trying to associate a custom file extension with my Xamarin-based Android application. I would like my application to open when the user chooses a particular type of f
This ended up working for me:
[IntentFilter(new[] { Intent.ActionView, Intent.ActionEdit }, Categories = new[] { Intent.CategoryDefault, Intent.CategoryBrowsable }, DataScheme = "file", DataHost = "*", DataPathPattern = ".*\\\\.label")]