I upgrade my Xamarin Android to API 30 and began getting errors with the old code below that implements SetOnNavigationItemSelectedListener. I am now trying to implement the new SetOnItemSelectedListener, but do not know how too. Any ideas?
bottomNavigation = FindViewById<BottomNavigationView>(Resource.Id.navigation);
bottomNavigation.SetOnNavigationItemSelectedListener(this);
bottomNavigation.NavigationItemSelected += Navigation_NavigationItemSelected;