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


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(),

.


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM