Ondřej Basler

Results 3 comments of Ondřej Basler

I think I have found a better way how to disable it. Just call onNavDestinationSelected with false: ```Kotlin binding.bottomnavigationbar.apply { setupWithNavController(navController) setOnItemSelectedListener { item -> NavigationUI.onNavDestinationSelected(item, navController, false) true }...

@lifestreamy You can let configuration cache ignore this task by ```kotlin tasks.withType(GraphfityTask::class) { notCompatibleWithConfigurationCache("The task accesses the project") } ``` I had the similar problem with the long execution time....