Not all permissions in ACCOUNT permission group granted automatically
In my app, I need the following permissions for creating an account: <uses-permission android:name="android.permission.GET_ACCOUNTS"/> <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/> <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/> <uses-permission android:name="android.permission.USE_CREDENTIALS"/> It is my understanding that in the M, these should be granted automatically. However, what I'm seeing is that only GET_ACCOUNTS is granted. I've checked this with the following code: @Override protected void onCreate(Bundle savedInstanceState) { super