You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a problem after updating to 2.1.0-beta03. No problem with 2.1.0-beta02.
I created MainGraph in the app module and only included XXXDestination and XXXXNavGraph in another module.
※There is no @Destination<MainGraph> in the app module.
@NavHostGraph
annotation class MainGraph {
@ExternalNavGraph<BookshelfNavGraph>(start = true)
@ExternalDestination<FavoriteAddScreenDestination>
companion object Includes
}
navgraphs.* cannot be imported in the generated NavGraphs.
This problem does not occur if create a destination that is not used.
@Destination<MainGraph>
@Composable
fun EmptyScreen() {}
The text was updated successfully, but these errors were encountered:
raamcosta
changed the title
navgraphs.* cannot be imported in the generated NavGraphs
[2.1.0-beta03] Navgraphs.* cannot be imported in the generated NavGraphs
May 5, 2024
@raamcosta This fix is super important for multi-module projects, so it would be great to add that to releases tab in the repository as well, so others will know about it
I had a problem after updating to 2.1.0-beta03. No problem with 2.1.0-beta02.
I created MainGraph in the app module and only included
XXXDestination
andXXXXNavGraph
in another module.※There is no
@Destination<MainGraph>
in the app module.navgraphs.*
cannot be imported in the generatedNavGraphs
.This problem does not occur if create a destination that is not used.
The text was updated successfully, but these errors were encountered: