Gathering detailed insights and metrics for @theankur/cordova-plugin-file-opener2
Gathering detailed insights and metrics for @theankur/cordova-plugin-file-opener2
A File Opener Plugin for Cordova
npm install @theankur/cordova-plugin-file-opener2
Typescript
Module System
Node Version
NPM Version
71.7
Supply Chain
99.3
Quality
75.4
Maintenance
100
Vulnerability
99.6
License
JavaScript (44.35%)
Java (29.94%)
Objective-C (25.71%)
Total Downloads
10,257
Last Day
19
Last Week
139
Last Month
812
Last Year
7,803
266 Commits
1 Watching
1 Branches
1 Contributors
Latest Version
1.0.1
Package Id
@theankur/cordova-plugin-file-opener2@1.0.1
Unpacked Size
44.86 kB
Size
12.65 kB
File Count
16
NPM Version
8.15.0
Node Version
16.17.1
Cumulative downloads
Total Downloads
Last day
-48.6%
19
Compared to previous day
Last week
-50.5%
139
Compared to previous week
Last month
44%
812
Compared to previous month
Last year
316.2%
7,803
Compared to previous year
No dependencies detected.
This plugin will open a file on your device file system with its default application.
1cordova.plugins.fileOpener2.open(filePath, fileMIMEType, { 2 error: function () {}, 3 success: function () {}, 4});
1$ cordova plugin add @theankur/cordova-plugin-file-opener2
This plugin requires the Android support library v4. From release 2.1.0
the version of this can be set at installation. The minimum version is 24.1.0
. Default value is 27.+
. Check out the latest version.
1$ cordova plugin add @theankur/cordova-plugin-file-opener2 --variable ANDROID_SUPPORT_V4_VERSION="27.+"
If you are using the cordova-android-support-gradle-release
plugin it should match the value you have set there.
The following platforms and versions are supported by the latest release:
Cordova CLI 6.0 is supported by 2.0.19, but there are a number of issues, particularly with Android builds (see 232 203 207). Using the cordova-android-support-gradle-release plugin may help.
Currently if your project requires AndroidX support, you need to add the following two plugins to your project:
1$ cordova plugin add cordova-plugin-androidx 2$ cordova plugin add cordova-plugin-androidx-adapter
Just adding these plugins should be enough and no further changes are necessary.
Opens a file
Open an APK install dialog:
1cordova.plugins.fileOpener2.open( 2 "/Downloads/gmail.apk", 3 "application/vnd.android.package-archive" 4);
Open a PDF document with the default PDF reader and optional callback object:
1cordova.plugins.fileOpener2.open( 2 "/Download/starwars.pdf", // You can also use a Cordova-style file uri: cdvfile://localhost/persistent/Downloads/starwars.pdf 3 "application/pdf", 4 { 5 error: function (e) { 6 console.log( 7 "Error status: " + e.status + " - Error message: " + e.message 8 ); 9 }, 10 success: function () { 11 console.log("file opened successfully"); 12 }, 13 } 14);
Note on Electron: Do not forget to enable Node.js in your app by adding "nodeIntegration": true
to platforms/electron/platform_www/cdv-electron-settings.json
file, See Cordova-Electron documentation.
Install From Market: to install an APK from a market place, such as Google Play or the App Store, you can use an <a>
tag in combination with the market://
protocol:
1<a href="market://details?id=xxxx" target="_system">Install from Google Play</a> 2<a 3 href="itms-apps://itunes.apple.com/app/my-app/idxxxxxxxx?mt=8" 4 target="_system" 5 >Install from App Store</a 6>
or in code:
1window.open("[market:// or itms-apps:// link]", "_system");
Opens with system modal to open file with an already installed app.
1cordova.plugins.fileOpener2.showOpenWithDialog(
2 "/Downloads/starwars.pdf", // You can also use a Cordova-style file uri: cdvfile://localhost/persistent/Downloads/starwars.pdf
3 "application/pdf",
4 {
5 error: function (e) {
6 console.log(
7 "Error status: " + e.status + " - Error message: " + e.message
8 );
9 },
10 success: function () {
11 console.log("file opened successfully");
12 },
13 position: [0, 0],
14 }
15);
position
array of coordinates from top-left device screen, use for iOS dialog positioning.
Uninstall a package with its ID.
Note: You need to add <uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
to your AndroidManifest.xml
1cordova.plugins.fileOpener2.uninstall("com.zynga.FarmVille2CountryEscape", { 2 error: function (e) { 3 console.log("Error status: " + e.status + " - Error message: " + e.message); 4 }, 5 success: function () { 6 console.log("Uninstall intent activity started."); 7 }, 8});
Check if an app is already installed.
1cordova.plugins.fileOpener2.appIsInstalled("com.adobe.reader", { 2 success: function (res) { 3 if (res.status === 0) { 4 console.log("Adobe Reader is not installed."); 5 } else { 6 console.log("Adobe Reader is installed."); 7 } 8 }, 9});
The following limitations apply when opening an APK file for installation:
ACTION_INSTALL_PACKAGE
permission. You can add it by adding this to your app's config.xml
file:1<platform name="android"> 2 <config-file parent="/manifest" target="AndroidManifest.xml" xmlns:android="http://schemas.android.com/apk/res/android"> 3 <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" /> 4 </config-file> 5</platform>
cordova.file.externalDataDirectory
, but not from cordova.file.dataDirectory
. Android 7+ does not have this limitation.It is not always possible to open a file from the SD Card using this plugin on Android. This is because the underlying Android library used does not support serving files from secondary external storage devices. Whether or not your the SD card is treated as a secondary external device depends on your particular phone's set up.
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 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
No vulnerabilities found.
No security vulnerabilities found.