With the Jetpack Navigation Library, the usual solutions to change hamburger menu icon in toolbar don't work, including:
toolbar.setNavigationIcon(R.drawable.my_drawer)
or
getSupportActionbar().setIcon(R.drawable.my_drawer)
^ both these methods do NOT work
Looks like NavigationUI library sets the hamburger & back icons in toolbar by its own & the icons are hardcoded in the library.
Is there a way to customize the navigation icon in toolbar when using Jetpack Navigation library?