Reputation: 5260
when we proceed with android M permissions on the first attempt the option checkbox "Never ask again" do not appears , here if we do "Deny" and than again opens the dialog we see an option checkbox "Never ask again". I never wants to show it from the second attempt how to achieve this?
Here i wants to make a note that i never want to show the checkbox "Never ask again". how to hide from the second attempt on doing
FragmentCompat.requestPermissions(fragment, permissions, requestCode);
Upvotes: 1
Views: 236
Reputation: 3193
I never wants to show it from the second attempt how to achieve this?
-> You can't and you shouldn't. The only way is to re-implement all the dialogs yourself, which is as crazy as it sounds.
Upvotes: 1