I am using AccountPicker to add a Google account in my device. Once it is added, I want to disable the syncing through code. I am able to stop contacts syncing for that account using the following code.
ContentResolver.setSyncAutomatically(account, ContactsContract.AUTHORITY, false);
Now I want to disable mail syncing also. What Authority I should use to disable mail syncing through code? Or is there a way to disable complete account sync?