Explorar o código

Changed plugin id

Sebastián Katzer %!s(int64=8) %!d(string=hai) anos
pai
achega
2442f1423a
Modificáronse 3 ficheiros con 15 adicións e 11 borrados
  1. 5 5
      README.md
  2. 8 3
      package.json
  3. 2 3
      plugin.xml

+ 5 - 5
README.md

@@ -1,5 +1,5 @@
 
-<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>
 
@@ -8,8 +8,8 @@
 </p>
 
 <p align="center">
-    <a href="https://www.npmjs.com/package/de.appplant.cordova.plugin.local-notification">
-        <img src="https://badge.fury.io/js/de.appplant.cordova.plugin.local-notification.svg" alt="npm version" />
+    <a href="https://www.npmjs.com/package/cordova-plugin-local-notification">
+        <img src="https://badge.fury.io/js/cordova-plugin-local-notification.svg" alt="npm version" />
     </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"">
         <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
 
 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:
 
-    $ cordova plugin add cordova-plugin-local-notifications@VERSION
+    $ cordova plugin add cordova-plugin-local-notification@VERSION
 
 Or install the latest head version:
 

+ 8 - 3
package.json

@@ -1,17 +1,18 @@
 {
-  "name": "cordova-plugin-local-notifications",
+  "name": "cordova-plugin-local-notification",
   "version": "0.9.0-beta.0",
   "description": "Schedules and queries for local notifications",
   "cordova": {
-    "id": "cordova-plugin-local-notifications",
+    "id": "cordova-plugin-local-notification",
     "platforms": [
+      "android",
       "ios",
       "windows"
     ]
   },
   "repository": {
     "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": [
     "appplant",
@@ -35,6 +36,10 @@
     {
       "name": "apple-ios",
       "version": ">=10.0.0"
+    },
+    {
+      "name": "cordova-android",
+      "version": ">=6.0.0"
     }
   ],
   "author": "Sebastián Katzer",

+ 2 - 3
plugin.xml

@@ -23,12 +23,12 @@
 
 <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
         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">
 
     <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>
 
@@ -234,7 +234,6 @@
 
     <!-- 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/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"/>