in app/src/main/java/com/amazonaws/ivs/moduleondemand/ui/MainActivity.kt [26:34]
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = ActivityMainBinding.inflate(layoutInflater)
setContentView(binding.root)
val navHostFragment = supportFragmentManager.findFragmentById(R.id.navigation_host) as NavHostFragment
val navController = navHostFragment.findNavController()
appBarConfiguration = AppBarConfiguration(setOf(R.id.main_fragment, R.id.loading_fragment))
setupActionBarWithNavController(navController, appBarConfiguration)
}