1.0.0 • Published 6 years ago

cordova-plugin-android-intent v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

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')
})