私の場合、次の行をAccountAuthenticatorActivity
使用して、アカウントの同期オプションをセットアップしてみます。addAccountExplicitly
ContentResolver.setIsSyncable(account, authority, 1);
ContentResolver.setSyncAutomatically(account, authority, true);
int seconds = getResources().getInteger(R.integer.syncFrequencySeconds);
ContentResolver.addPeriodicSync(account, authority, new Bundle(), seconds);
syncFrequencySeconds
86400 (24 時間ごと) に設定されます。しかし、私の同期アダプターはまだ毎分トリガーされています。私は何を間違っていますか?(同期自体は問題なく動作します)