On setup, I try to initialize app_data_dir. The file <app_data_dir>/paths.json is meant to persist paths managed by the app between executions.
I would like to keep the paths in the state of the app and initialize them from <app_data_dir>/paths.json when the app loads. However, tauri::Builder::manage doesn't seem to allow it.
What am I missing?