0.1.0 • Published 9 years ago

react-native-android-intent v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

#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");
      }
    });