cordova-plugin-android-intent

1.0.0 • Public • Published

cordova-plugin-android-intent

Cordova plugin for sending Android intents.

cordova plugin add cordova-plugin-android-intent

Usage

Create and send an intent using the exposed constructor. Additional details can be found here.

cordova.plugins.Intent({
  action: 'android.intent.action.VIEW',
  data: 'file:///sdcard/Download/example.pdf',
  type: 'application/pdf',
  categories: [
    'android.intent.category.ALTERNATIVE'
  ],
  flags: {
    'ACTIVITY_NO_HISTORY': true
  }
}, function (err) {
  console.log('done')
})

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i cordova-plugin-android-intent

    Weekly Downloads

    1

    Version

    1.0.0

    License

    ISC

    Unpacked Size

    10.2 kB

    Total Files

    9

    Last publish

    Collaborators

    • kapetan