解决react-native-image-picker在RN0.6以上上调不起相机问题

1.需要link

react-native link react-native-image-picker

2.在android/settings.gradle文件中添加如下代码

include ‘:react-native-image-picker’
project(’:react-native-image-picker’).projectDir = new File(settingsDir, ‘…/node_modules/react-native-image-picker/android’)

一般link完会自动添加的

3.在android/app/build.gradle文件的dependencies中添加如下代码

implementation project(':react-native-image-picker')

dependencies {
    if (enableHermes) {
        def hermesPath = "../../node_modules/hermes-engine/android/";
        debugImplementation files(hermesPath + "hermes-debug.aar")
        releaseImplementation files(hermesPath + "hermes-release.aar")
        implementation project(':react-native-image-picker') //添加的代码
    } else {
        implementation jscFlavor
    }
}

4.在AndroidManifest.xml文件中添加权限

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

5.在android\app\src\main\AndroidManifest.xml文件的application标签中多添加一行配置信息

<application
    android:name=".MainApplication"
    android:label="@string/app_name"
    android:icon="@mipmap/ic_launcher"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:allowBackup="false"
    android:requestLegacyExternalStorage="true"  //添加的代码
    android:theme="@style/AppTheme">
</application>

以上几步完成后就没问题了,实测有效才分享

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值