1.0.5 • Published 6 years ago

cordova-plugin-mfilechooser v1.0.5

Weekly downloads
12
License
MIT
Repository
github
Last release
6 years ago

MFileChooser (Evolution36 version)

Cordova/Phonegap plugin that supplies a File Chooser for Android 4+. The File Chooser does not require installation external file manager.

alt text | alt text

Adding the Plugin to your project

Plugin has been successfully tested on Android 4+ device with Cordova 5.

To install the plugin

cordova plugin add cordova-plugin-mfilechooser

Using the plugin

The plugin creates the object window.plugins.mfilechooser. To use, call the open() method:

Simple using

   window.plugins.mfilechooser.open([], function (uri) {
      
      alert(uri);
      
    }, function (error) {
      
        alert(error);
    
    });

Filtering by extension

   window.plugins.mfilechooser.open(['.doc', '.xls', '.ppt'], function (uri) {
      
      alert(uri);
      
    }, function (error) {
      
        alert(error);
    
    });

Release notes

1.0.5: Fix res paths for Cordova 7 and updated README and package id

1.0.4: Fix support dependency and change package name to cordova standards

1.0.2: August 14, 2015 Initial release

Contribution

This plugin is exactly the same as Maginsoft FileChooser all that we added is the option for the application to rotate with the device's rotation.