ActivityCompat.requestPermissions(thisActivity,
new String[]{Manifest.permission.READ_CONTACTS},
MY_PERMISSIONS_REQUEST_READ_CONTACTS);
I want to add permission one by one. I have 6 permission which require grants. I have seen so many app where more than one permission asks at a time. but i am not able to do it. it ask only for one time. i have added same code 5 times.