react-native-Intent
React Native Android module to use Android's Intent actions.
Installation
npm install react-native-intent --save
Add it to your android project
- In
android/setting.gradle
...include ':IntentModule', ':app'project(':IntentModule').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-intent')
- In
android/app/build.gradle
...dependencies { ... compile project(':IntentModule')}
- Register Module (in MainActivity.java)
// <--- import
Example / Usage of video capture
var Intent = ; var ACTION_VIDEO_CAPTURE = "android.media.action.VIDEO_CAPTURE";var ACTION_VIDEO_CAPTURE_REQUEST_ID = 20001; var data = await Intent;