Trigger Sync on android app

I am using the offical android app and am on a paid sync plan. but sometimes when working on my file on the pc and android phone, it takes android a very long time (> 2 min) to re-pull the version i changed on my pc. sometimes it happens within seconds. this is something that is bothering me for a while as I have a todo-file that I usually have open all the time on both my pc and my phone-

is there a way to manually trigger a pull and push in the app or some sort of log to track down the issue? do i have to close the file, to trigger a re-sync?

1 Like

You can manually trigger a sync by pausing Sync and then resuming it.

1 Like

You could go into the Sync Settings and pause/unpause?

If you want to do it programmatically:

app.internalPlugins.plugins.sync.instance.setPause(false)

appears to force the sync to scan for changes. So you could put that into a CustomJS or Templater script, which you could launch from the 3-dot menu, or the mobile toolbar.

1 Like

Pause/unpause can also be done from the Sync icon menu (but oddly not the command palette).

1 Like