DingLe888 / react-native-arena-media

RN,多媒体插件,包含扫一扫,拍照,等

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-native-arena-media

Getting started

$ npm install react-native-arena-media --save

Mostly automatic installation

$ 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"

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-arena-media and add RNArenaMedia.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNArenaMedia.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. 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 the getPackages() method
  1. 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')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-arena-media')
    

Usage

import RNArenaMedia from 'react-native-arena-media';

<!--扫描二维码-->
RNArenaMedia.scanQRCode({}).then((value)=>{

      <!--value 为二维码扫描结果-->
    },(error)=>{
      <!--error 为二维码扫描报错信息-->

    })

About

RN,多媒体插件,包含扫一扫,拍照,等


Languages

Language:Objective-C 54.9%Language:Java 42.7%Language:Ruby 2.0%Language:JavaScript 0.4%