Giter VIP home page Giter VIP logo

cordova-plugin-file-opener2's Introduction

###This is work-in-progress!

A File Opener Plugin for Cordova

This plugin will open a file on your device file system with its default application.

Requirements

  • Android 4+ / iOS 6+
  • Cordova 3.0 or higher

Installation

cordova plugin add [url-of-the-git-repo]

Usage

Open an APK install dialog:

<script>
    cordova.plugins.fileOpener2.open(
        '/sdcard/Download/gmail.apk', 
        'application/vnd.android.package-archive'
    );
</script>

Open a PDF document with the default PDF reader and optional callback object:

<script>
    cordova.plugins.fileOpener2.open(
	    '/sdcard/Download/starwars.pdf', 
	    'application/pdf', 
	    { 
		    error : function(errorObj) { 
			    alert('Error status: ' + errorObj.status + ' - Error message: ' + errorObj.message); 
		    },
		    success : function () {
			    alert('file opened successfully'); 				
		    }
	    }
    );
</script>

Notes

  • For properly opening a PDF file, you must already have a PDF reader (Acrobat Reader, Foxit Mobile PDF, etc. ) installed on your mobile device. Otherwise this will not work

  • It is reported that in iOS, you might need to remove <preference name="iosPersistentFileLocation" value="Library" /> from your config.xml

cordova-plugin-file-opener2's People

Contributors

pwlin avatar steodor avatar sullivanpt avatar

Watchers

Laurențiu Macovei avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.