tbruyelle/RxPermissions

Do not work on OPPO or VIVO if denyed

490965536 opened this issue · 1 comments

rxPermissions
.requestEachCombined(Manifest.permission.CAMERA,
Manifest.permission.READ_PHONE_STATE)
.subscribe(permission -> { // will emit 1 Permission object
if (permission.granted) {
// All permissions are granted !
} else if (permission.shouldShowRequestPermissionRationale)
// At least one denied permission without ask never again
} else {
// At least one denied permission with ask never again
// Need to go to the settings

     _//  this not work  on OPPO or VIVO_

    }
});``

怎么解决的?