$ npm install react-native-arena-media --save
$ react-native link react-native-arena-media
- iOS
配置摄像机访问权限 Privacy - Camera Usage Description 配置相册访问权限 Privacy - Photo Library Usage Description
- Android
主模块的Manifast标签加上 xmlns:tools="http://schemas.android.com/tools"
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-arena-media
and addRNArenaMedia.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNArenaMedia.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.arena.media.RNArenaMediaPackage;
to the imports at the top of the file - Add
new RNArenaMediaPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-arena-media' project(':react-native-arena-media').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-arena-media/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-arena-media')
import RNArenaMedia from 'react-native-arena-media';
<!--扫描二维码-->
RNArenaMedia.scanQRCode({}).then((value)=>{
<!--value 为二维码扫描结果-->
},(error)=>{
<!--error 为二维码扫描报错信息-->
})