Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cordova Plugin Wechat | 1,160 | 32 | 1 | 3 years ago | 27 | April 23, 2020 | 43 | Objective-C | ||
A cordova plugin, a JS version of Wechat SDK | ||||||||||
Jpush Phonegap Plugin | 922 | 36 | 6 | 2 months ago | 70 | July 28, 2021 | 41 | mit | JavaScript | |
JPush's officially supported PhoneGap/Cordova plugin (Android & iOS). 极光推送官方支持的 PhoneGap/Cordova 插件(Android & iOS)。 | ||||||||||
Cordova Plugin Ble Central | 902 | 83 | 10 | 22 days ago | 36 | July 11, 2022 | 52 | other | Java | |
Bluetooth Low Energy (BLE) Central plugin for Apache Cordova (aka PhoneGap) | ||||||||||
Cordova Admob Pro | 693 | 2 | a year ago | 5 | January 10, 2017 | 62 | mit | Java | ||
:fire: Cordova Plugin for Google AdMob, DFP, ADX. Easy monetization using mobile Ad, with single line of JavaScript. Compatible with Cordova CLI, Inoic, PhoneGap Build, etc. | ||||||||||
Cordova Plugin Iosrtc | 679 | 17 | 1 | 4 months ago | 60 | June 17, 2022 | 20 | mit | Objective-C | |
Cordova iOS plugin exposing the WebRTC W3C API | ||||||||||
Cordova Plugin Admob Free | 508 | 70 | 4 | 2 years ago | 48 | May 22, 2019 | 254 | mit | Java | |
Cordova AdMob Plugin | ||||||||||
React Native Cordova Plugin | 436 | 3 | 6 years ago | 10 | April 27, 2016 | 12 | isc | JavaScript | ||
Cordova Plugin Adapter for React Native | ||||||||||
Cordova Imagepicker | 397 | 60 | 2 | 2 years ago | 4 | September 29, 2016 | 193 | other | Java | |
Cordova Plugin For Multiple Image Selection | ||||||||||
Cordova Plugin Badge | 380 | 215 | 6 | 3 years ago | 12 | November 19, 2018 | 15 | apache-2.0 | JavaScript | |
Access and modify badge numbers | ||||||||||
Vue Cordova | 317 | 50 | 1 | 4 years ago | 5 | December 07, 2016 | 7 | JavaScript | ||
Vue.js plugin for Cordova |
Cordova plugin for downloading files from server.
This requires Phonegap / Cordova CLI 3.0 +
cordova plugin add https://github.com/Whebcraft/cordova-plugin-downloader
<plugin spec="https://github.com/Whebcraft/cordova-plugin-downloader.git" source="git" />
var Downloader = window.plugins.Downloader;
var downloadSuccessCallback = function(result) {
// result is an object
{
path: "file:///storage/sdcard0/documents/My Pdf.pdf", // Returns full file path
file: "My Pdf.pdf", // Returns Filename
folder: "documents" // Returns folder name
}
console.log(result.file); // My Pdf.pdf
};
var downloadErrorCallback = function(error) {
// error: string
};
var options = {
title: 'Downloading File', // Download Notification Title
url: "http://www.website.com/file.pdf", // File Url
path: "My Pdf.pdf", // The File Name with extension
description: 'The pdf file is downloading', // Download description Notification String
visible: true, // This download is visible and shows in the notifications while in progress and after completion.
folder: "documents" // Folder to save the downloaded file, if not exist it will be created
}
Downloader.download(options, downloadSuccessCallback, downloadErrorCallback);
var Downloader = window.plugins.Downloader;
var downloadSuccessCallback = function(folder) {
// folder: string where the file has been downloaded
};
var downloadErrorCallback = function(error) {
// error: string
};
var options = {
url: "http://87.76.16.10/test10.zip", // File Url
path: "test10.zip", // The File Name with extension
}
Downloader.download(options, downloadSuccessCallback, downloadErrorCallback);
The file will be downloaded within the device storage not SdCard.(Android)
WARNING: will overwrite existing file if it already exists.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.