Skip to content

0.14.0

Compare
Choose a tag to compare
@github-actions github-actions released this 10 May 10:14
· 548 commits to main since this release
69d3f5c

Navigator

  • Removed saveCurrentRootState from navigate(NavRoot, ...) method.
  • Added resetToRoot(NavRoot) as a replacement.
  • Added com.freeletics.mad:navigator-experimental which is an experimental alternative implementation of navigator-compose
    without a dependency on AndroidX navigation. The artifact is source and binary compatible with navigator-compose so it can
    be easily tested by added the following to settings.gradle:
gradle.beforeProject {
    configurations.configureEach {
        resolutionStrategy.eachDependency {
            if (requested.group == "com.freeletics.mad" && requested.name == "navigator-compose") {
                useTarget("com.freeletics.mad:navigator-experimental:${requested.version}")
            }
        }
    }
}

StateMachine