Fixed #90 - Upped the version to 2.0.5

This commit is contained in:
pwlin 2017-01-31 00:33:34 +01:00
parent cd66d6597b
commit 916958c960
3 changed files with 121 additions and 121 deletions

236
README.md
View File

@ -1,118 +1,118 @@
Contributors Contributors
------------ ------------
[@Gillardo](https://github.com/Gillardo/), [@TankOs](https://github.com/TankOs), [@Rovi23](https://github.com/Rovi23), [@josemanuelbd](https://github.com/josemanuelbd), [@ielcoro](https://github.com/ielcoro), [@keturn](https://github.com/keturn), [@conform](https://github.com/conform), [@guyc](https://github.com/guyc), [@J3r0M3D3V](https://github.com/J3r0M3D3V), [@WuglyakBolgoink](https://github.com/WuglyakBolgoink), [@lincolnthree](https://github.com/lincolnthree) [@Gillardo](https://github.com/Gillardo/), [@TankOs](https://github.com/TankOs), [@Rovi23](https://github.com/Rovi23), [@josemanuelbd](https://github.com/josemanuelbd), [@ielcoro](https://github.com/ielcoro), [@keturn](https://github.com/keturn), [@conform](https://github.com/conform), [@guyc](https://github.com/guyc), [@J3r0M3D3V](https://github.com/J3r0M3D3V), [@WuglyakBolgoink](https://github.com/WuglyakBolgoink), [@lincolnthree](https://github.com/lincolnthree), [@rocco](https://github.com/rocco/)
A File Opener Plugin for Cordova (The Original Version) A File Opener Plugin for Cordova (The Original Version)
========================== ==========================
This plugin will open a file on your device file system with its default application. This plugin will open a file on your device file system with its default application.
Current Version: 2.0.4 Current Version: 2.0.5
---------------- ----------------
Requirements Requirements
------------- -------------
- Android 4 or higher / iOS 6 or higher / WP8 - Android 4 or higher / iOS 6 or higher / WP8
- Cordova 3.0 or higher - Cordova 3.0 or higher
Installation Installation
------------- -------------
cordova plugin add cordova-plugin-file-opener2 cordova plugin add cordova-plugin-file-opener2
Usage Usage
------ ------
cordova.plugins.fileOpener2.open( cordova.plugins.fileOpener2.open(
filePath, filePath,
fileMIMEType, fileMIMEType,
{ {
error : function(){ }, error : function(){ },
success : function(){ } success : function(){ }
} }
); );
Examples Examples
-------- --------
Open an APK install dialog: Open an APK install dialog:
cordova.plugins.fileOpener2.open( cordova.plugins.fileOpener2.open(
'/sdcard/Download/gmail.apk', '/sdcard/Download/gmail.apk',
'application/vnd.android.package-archive' 'application/vnd.android.package-archive'
); );
Open a PDF document with the default PDF reader and optional callback object: Open a PDF document with the default PDF reader and optional callback object:
cordova.plugins.fileOpener2.open( cordova.plugins.fileOpener2.open(
'/sdcard/Download/starwars.pdf', // You can also use a Cordova-style file uri: cdvfile://localhost/persistent/Download/starwars.pdf '/sdcard/Download/starwars.pdf', // You can also use a Cordova-style file uri: cdvfile://localhost/persistent/Download/starwars.pdf
'application/pdf', 'application/pdf',
{ {
error : function(e) { error : function(e) {
console.log('Error status: ' + e.status + ' - Error message: ' + e.message); console.log('Error status: ' + e.status + ' - Error message: ' + e.message);
}, },
success : function () { success : function () {
console.log('file opened successfully'); console.log('file opened successfully');
} }
} }
); );
Notes Notes
------ ------
- For properly opening _any_ file, you must already have a suitable reader for that particular file type installed on your device. Otherwise this will not work. - For properly opening _any_ file, you must already have a suitable reader for that particular file type installed on your device. Otherwise this will not work.
- [It is reported](https://github.com/pwlin/cordova-plugin-file-opener2/issues/2#issuecomment-41295793) that in iOS, you might need to remove `<preference name="iosPersistentFileLocation" value="Library" />` from your `config.xml` - [It is reported](https://github.com/pwlin/cordova-plugin-file-opener2/issues/2#issuecomment-41295793) that in iOS, you might need to remove `<preference name="iosPersistentFileLocation" value="Library" />` from your `config.xml`
- If you are wondering what MIME-type should you pass as the second argument to `open` function, [here is a list of all known MIME-types](http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/mime.types?view=co) - If you are wondering what MIME-type should you pass as the second argument to `open` function, [here is a list of all known MIME-types](http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/mime.types?view=co)
Additional Android Functions Additional Android Functions
----------------------------- -----------------------------
####The following functions are available in Android platform ####The following functions are available in Android platform
###.uninstall(_packageId, callbackContext_) ###.uninstall(_packageId, callbackContext_)
Uninstall a package with its id. Uninstall a package with its id.
cordova.plugins.fileOpener2.uninstall('com.zynga.FarmVille2CountryEscape', { cordova.plugins.fileOpener2.uninstall('com.zynga.FarmVille2CountryEscape', {
error : function(e) { error : function(e) {
console.log('Error status: ' + e.status + ' - Error message: ' + e.message); console.log('Error status: ' + e.status + ' - Error message: ' + e.message);
}, },
success : function() { success : function() {
console.log('Uninstall intent activity started.'); console.log('Uninstall intent activity started.');
} }
}); });
###.appIsInstalled(_packageId, callbackContext_) ###.appIsInstalled(_packageId, callbackContext_)
Check if an app is already installed. Check if an app is already installed.
cordova.plugins.fileOpener2.appIsInstalled('com.adobe.reader', { cordova.plugins.fileOpener2.appIsInstalled('com.adobe.reader', {
success : function(res) { success : function(res) {
if (res.status === 0) { if (res.status === 0) {
console.log('Adobe Reader is not installed.'); console.log('Adobe Reader is not installed.');
} else { } else {
console.log('Adobe Reader is installed.') console.log('Adobe Reader is installed.')
} }
} }
}); });
LICENSE LICENSE
-------- --------
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2013 pwlin - pwlin05@gmail.com Copyright (c) 2013 pwlin - pwlin05@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so, the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions: subject to the following conditions:
The above copyright notice and this permission notice shall be included in all The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software. copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -1,6 +1,6 @@
{ {
"name": "cordova-plugin-file-opener2", "name": "cordova-plugin-file-opener2",
"version": "2.0.4", "version": "2.0.5",
"description": "A File Opener Plugin for Cordova. (The Original Version)", "description": "A File Opener Plugin for Cordova. (The Original Version)",
"cordova": { "cordova": {
"id": "cordova-plugin-file-opener2", "id": "cordova-plugin-file-opener2",

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-file-opener2" version="2.0.4"> <plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-file-opener2" version="2.0.5">
<name>File Opener2</name> <name>File Opener2</name>
<description>A File Opener Plugin for Cordova. (The Original Version)</description> <description>A File Opener Plugin for Cordova. (The Original Version)</description>
@ -27,7 +27,7 @@
</config-file> </config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application"> <config-file target="AndroidManifest.xml" parent="/manifest/application">
<provider <provider
android:name="android.support.v4.content.FileProvider" android:name="io.github.pwlin.cordova.plugins.fileopener2.FileProvider"
android:authorities="$PACKAGE_NAME.opener.provider" android:authorities="$PACKAGE_NAME.opener.provider"
android:exported="false" android:exported="false"
android:grantUriPermissions="true"> android:grantUriPermissions="true">