JSPM

react-native-activity-result-fork

0.1.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 101
  • Score
    100M100P100Q61883F
  • License MIT

React Native modules for starting and finishing activities on Android.

Package Exports

  • react-native-activity-result-fork

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-activity-result-fork) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-native-activity-result

A simple React Native native module for invoking Activity.startActivityForResult, Activity.setResult, and Activity.finish to help with implementing app-to-app communication.

Getting started

$ npm install react-native-activity-result-fork --save

Mostly automatic installation

$ react-native link react-native-activity-result-fork

Manual installation

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.microsoft.ActivityResultPackage; to the imports at the top of the file
  • Add new ActivityResultPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-activity-result-fork'
    project(':react-native-activity-result-fork').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-activity-result/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
    compile project(':react-native-activity-result-fork')

Usage

import ActivityResult from 'react-native-activity-result-fork';

// Check if an app is installed to handle an intent
const activity = await ActivityResult.resolveActivity('com.example.INTENT');
if (!activity) {
    console.warn('Please install the othe app.');
} else {
    console.log(`Activity will be handled by ${activity.package}`);
}

// Start an activity for a result
let uniqueId = 0;
let args = /* ... */;
const response = await ActivityResult.startActivityForResult(++uniqueId, 'com.example.INTENT', args);
if (response.resultCode !== ActivityResult.OK) {
  throw new Error('Invalid result from activity.');
} else {
  console.log('Got the following response: ' + response.data);
}

// Finish an activity with a result
ActivityResult.finish(ActivityResult.OK, 'com.Example.INTENT', args);