Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 456 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 456 Bytes

#react-native-android-intent Like android-intents, this is a react-native library that helps you call thirdparty apps to do generic work instead of you.

#Install

npm install react-native-android-intent --save
rnpm link

#Usage

    Intent.open(filePath, isOpen => {
      if(isOpen) {
        console.log("Can open");
      }
      else {
        console.log("can't open");
      }
    });