Skip to content

Commit 284f36b

Browse files
committed
Merge pull request #12 from satsalou/issue-11
chore(*) Issue #11: Rename cordova plugins and update README file
2 parents 932c5ad + 3bc6a97 commit 284f36b

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,13 @@ cordova plugin add cordova-plugin-inappbrowser
8181
#### Used Cordova plugins
8282
In case that the required Cordova plugins are not installed while installing NodeJS dependencies, Cordova's command mentioned previously can be used to install the following plugins:
8383

84-
* **org.apache.cordova.inappbrowser** - Provides a web browser view. It could be used to open images, access web pages, and open PDF files.
84+
* **cordova-plugin-device** - This plugin defines a global device object, which describes the device's hardware and software.
85+
* **cordova-plugin-console** - This plugin is meant to ensure that console.log() is as useful as it can be. It adds additional function for iOS, Ubuntu, Windows Phone 8, and Windows.
86+
* **com.ionic.keyboard** - It provides functions to make interacting with the keyboard easier, and fires events to indicate that the keyboard will hide/show.
87+
* **cordova-plugin-inappbrowser** - Provides a web browser view. It could be used to open images, access web pages, and open PDF files.
8588
* **cordova-plugin-geolocation** - Grab the current location of the user, or grab continuous location changes
8689
* **nl.x-services.plugins.socialsharing** - Share images, text, messages via Facebook, Twitter, Email, SMS, WhatsApp, etc using this plugin (https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin.git).
90+
* **de.appplant.cordova.plugin.email-composer** - The plugin provides access to the standard interface that manages the editing and sending an email message.
8791
* **cordova-plugin-network-information** - This plugin provides an implementation of an old version of the Network Information API. It provides information about the device's cellular and wifi connection, and whether the device has an internet connection.
8892
* **cordova-plugin-whitelist** - This plugin implements a whitelist policy for navigating the application webview on Cordova 4.0
8993
* **cordova-plugin-transport-security** - Cordova / PhoneGap Plugin to allow 'Arbitrary Loads' by adding a declaration to the Info.plist file to bypass the iOS 9 App Transport Security

package.json

+7-12
Original file line numberDiff line numberDiff line change
@@ -58,26 +58,21 @@
5858
"ios"
5959
],
6060
"cordovaPlugins": [
61-
"org.apache.cordova.device",
62-
"org.apache.cordova.console",
61+
"cordova-plugin-device",
62+
"cordova-plugin-console",
6363
"com.ionic.keyboard",
64-
"org.apache.cordova.inappbrowser",
64+
"cordova-plugin-inappbrowser",
65+
"cordova-plugin-geolocation",
6566
{
66-
"locator": "https://github.com/phonegap-build/PushPlugin.git",
67-
"id": "com.phonegap.plugins.PushPlugin"
67+
"locator": "https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin.git",
68+
"id": "nl.x-services.plugins.socialsharing"
6869
},
6970
{
7071
"locator": "https://github.com/katzer/cordova-plugin-email-composer.git",
7172
"id": "de.appplant.cordova.plugin.email-composer"
7273
},
73-
"cordova-plugin-geolocation",
74-
{
75-
"locator": "https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin.git",
76-
"id": "nl.x-services.plugins.socialsharing"
77-
},
7874
"cordova-plugin-network-information",
7975
"cordova-plugin-whitelist",
80-
"cordova-plugin-transport-security",
81-
"org.apache.cordova.console"
76+
"cordova-plugin-transport-security"
8277
]
8378
}

0 commit comments

Comments
 (0)