加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

react-native 扫一扫功能(二维码扫描)功能开发

发布时间:2020-12-15 20:25:01 所属栏目:百科 来源:网络整理
导读:1.安装插件 yarn add react-native-smart-barcode 2.关联 react-native link react-native-smart-barcode 3.修改 android/settings.gradle rootProject.name = ‘Example‘include ‘:react-native-smart-barcode‘project(‘:react-native-smart-barcode‘)

1.安装插件

yarn add react-native-smart-barcode

2.关联

react-native link react-native-smart-barcode

3.修改 android/settings.gradle

rootProject.name = ‘Example‘
include ‘:react-native-smart-barcode‘
project(‘:react-native-smart-barcode‘).projectDir = new File(rootProject.projectDir,‘../node_modules/react- 
native-smart-barcode/android‘)

include ‘:app‘

4.修改 android/app/build.gradle

dependencies {
  compile project(‘:react-native-smart-barcode‘)
  ...
}

5.修改 android/app/src/main/AndroidManifest.xml

<!-- smart-barcode所需权限 开始-->
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<!-- smart-barcode所需权限 结束-->

6.修改 android/app/src/main/java/com/example/MainApplication.java

import com.reactnativecomponent.barcode.RCTCapturePackage;

new RCTCapturePackage(),

.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读