Commit 2442f142 by Sebastián Katzer

Changed plugin id

parent c88dd6ec
<p align="left"><b><a href="https://github.com/katzer/cordova-plugin-local-notifications/tree/example">SAMPLE APP</a> :point_right:</b></p> <p align="left"><b><a href="https://github.com/katzer/cordova-plugin-local-notifications/tree/example-x">SAMPLE APP</a> :point_right:</b></p>
<br> <br>
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
</p> </p>
<p align="center"> <p align="center">
<a href="https://www.npmjs.com/package/de.appplant.cordova.plugin.local-notification"> <a href="https://www.npmjs.com/package/cordova-plugin-local-notification">
<img src="https://badge.fury.io/js/de.appplant.cordova.plugin.local-notification.svg" alt="npm version" /> <img src="https://badge.fury.io/js/cordova-plugin-local-notification.svg" alt="npm version" />
</a> </a>
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=L3HKQCD9UA35A "Donate once-off to this project using Paypal""> <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=L3HKQCD9UA35A "Donate once-off to this project using Paypal"">
<img src="https://img.shields.io/badge/paypal-donate-yellow.svg" alt="PayPayl donate button" /> <img src="https://img.shields.io/badge/paypal-donate-yellow.svg" alt="PayPayl donate button" />
...@@ -489,11 +489,11 @@ The plugin can be installed via [Cordova-CLI][CLI] and is publicly available on ...@@ -489,11 +489,11 @@ The plugin can be installed via [Cordova-CLI][CLI] and is publicly available on
Execute from the projects root folder: Execute from the projects root folder:
$ cordova plugin add cordova-plugin-local-notifications $ cordova plugin add cordova-plugin-local-notification
Or install a specific version: Or install a specific version:
$ cordova plugin add cordova-plugin-local-notifications@VERSION $ cordova plugin add cordova-plugin-local-notification@VERSION
Or install the latest head version: Or install the latest head version:
......
{ {
"name": "cordova-plugin-local-notifications", "name": "cordova-plugin-local-notification",
"version": "0.9.0-beta.0", "version": "0.9.0-beta.0",
"description": "Schedules and queries for local notifications", "description": "Schedules and queries for local notifications",
"cordova": { "cordova": {
"id": "cordova-plugin-local-notifications", "id": "cordova-plugin-local-notification",
"platforms": [ "platforms": [
"android",
"ios", "ios",
"windows" "windows"
] ]
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/katzer/cordova-plugin-local-notifications.git#x" "url": "git+https://github.com/katzer/cordova-plugin-local-notifications.git"
}, },
"keywords": [ "keywords": [
"appplant", "appplant",
...@@ -35,6 +36,10 @@ ...@@ -35,6 +36,10 @@
{ {
"name": "apple-ios", "name": "apple-ios",
"version": ">=10.0.0" "version": ">=10.0.0"
},
{
"name": "cordova-android",
"version": ">=6.0.0"
} }
], ],
"author": "Sebastián Katzer", "author": "Sebastián Katzer",
......
...@@ -23,12 +23,12 @@ ...@@ -23,12 +23,12 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-local-notifications" id="cordova-plugin-local-notification"
version="0.9.0-beta.0"> version="0.9.0-beta.0">
<name>LocalNotification</name> <name>LocalNotification</name>
<description>The plugin supports scheduling local notifications in various ways with a single interface. It also allows you to update, clear or cancel them. There are different interfaces to query for local notifications and a complete set of events to hook into the life cycle of local notifications. To get a deep overview we recommend to read about all the topics in our wiki and try out the Kitchen Sink App</description> <description>Schedules and queries for local notifications</description>
<repo>https://github.com/katzer/cordova-plugin-local-notifications.git</repo> <repo>https://github.com/katzer/cordova-plugin-local-notifications.git</repo>
...@@ -234,7 +234,6 @@ ...@@ -234,7 +234,6 @@
<!-- windows --> <!-- windows -->
<platform name="windows"> <platform name="windows">
<framework src="src/windows/lib.UW/x86/LocalNotificationProxy.winmd" target-dir="x86" arch="x86" custom="true"/> <framework src="src/windows/lib.UW/x86/LocalNotificationProxy.winmd" target-dir="x86" arch="x86" custom="true"/>
<framework src="src/windows/lib.UW/x64/LocalNotificationProxy.winmd" target-dir="x64" arch="x64" custom="true"/> <framework src="src/windows/lib.UW/x64/LocalNotificationProxy.winmd" target-dir="x64" arch="x64" custom="true"/>
<framework src="src/windows/lib.UW/ARM/LocalNotificationProxy.winmd" target-dir="ARM" arch="ARM" custom="true"/> <framework src="src/windows/lib.UW/ARM/LocalNotificationProxy.winmd" target-dir="ARM" arch="ARM" custom="true"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment