tbruyelle / RxPermissions

Android runtime permissions powered by RxJava2
Apache License 2.0
10.48k stars 1.31k forks source link

Do not work on OPPO or VIVO if denyed #301

Open 490965536 opened 4 years ago

490965536 commented 4 years ago

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_

    }
});``
CxBingo commented 3 years ago

怎么解决的?