I am trying to build a periodic sync in my android app to run periodically every 1 hour. I am following an example from android developer website:
ContentResolver.addPeriodicSync(createDummyAccount(this, "account name"),
MyContentProvider.AUTHORITY,
Bundle.EMPTY, getResources().getInteger(R.integer.periodic_sync_interval));
The problem is that sync is being triggered every time the activity is being launched even within one minute.
Can you help please?