android storage.xml,【原创】解决React Native报错:(Android)/storage/emulated/0/Pictures (Permission denied)...

问题背景:

使用 React-Native-Camera 组件拍照,结果权限报错:

fff5d8c407e44fbe6abb6f12c2c5fcd7.png

Code Snippets:

//拍摄照片

takePicture() {

let target = this.props.toMemory ? {

target: Camera.constants.CaptureTarget.temp,

captureQuality: Camera.constants.CaptureQuality["low"],

} : {

target: Camera.constants.CaptureTarget.disk,

captureQuality: Camera.constants.CaptureQuality["low"]

};

this.camera.capture(target).then(function(data){

alert("拍照成功!图片保存地址:\n" + data.path)

}).catch(

err => console.error(err)

);

}

AndroidManifest.xml:

package="com.baiduproject">

android:name=".MainApplication"

android:label="@string/app_name"

android:icon="@mipmap/ic_launcher"

android:allowBackup="false"

android:theme="@style/AppTheme">

android:name=".MainActivity"

android:label="@string/app_name"

android:configChanges="keyboard|keyboardHidden|orientation|screenSize"

android:windowSoftInputMode="adjustResize">

问题原因:

1. 用户拒绝对 APP 授予 storage 存储权限。

2. 在 < Android 6.0的设备上,权限只要写在AndroidManifest.xml里APP就会自动获得,此情形下check和request方法将始终返回true;但是在 >= Android 6.0的设备上,权限管理机制发生了较大的变化,除了要显示的在AndroidManifest.xml中声明必需权限以外,系统认为一些 "危险" 的权限还需要弹框供用户再次选择是否授权。

临时解决方案:

把 capture target 属性 由 disk 改为 temp即可 【target: Camera.constants.CaptureTarget.temp】

终极解决方案:

请移步这里有你想要的答案:https://github.com/yonahforst/react-native-permissions

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值