Exif Notes is an Android application that let's you quickly make structured notes in the field when doing film photography. It has about 1,500 active installations through Google Play.
Navigation between fragments is done manually using fragment transactions. Nested fragments and the many different navigation paths inside the app make it laborious to maintain all the different transactions.
Current behaviour
Navigation between fragments is done manually using fragment transactions. Nested fragments and the many different navigation paths inside the app make it laborious to maintain all the different transactions.
New feature
Implement Jetpack's Navigation component to handle navigation and fragment transactions. Jetpack Navigation documentation
Why is this useful
Using Jetpack Navigation will help with maintaining and developing the code related to navigation and to achieve consistens user experience.