Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cordova-plugin-local-notifications
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nabil Sadki
cordova-plugin-local-notifications
Commits
24360db0
Commit
24360db0
authored
Oct 21, 2013
by
Sebastián Katzer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial start with WP8 support
parent
550ce3cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
9 deletions
+41
-9
plugin.xml
plugin.xml
+16
-9
LocalNotification.cs
src/wp8/LocalNotification.cs
+25
-0
No files found.
plugin.xml
View file @
24360db0
...
...
@@ -3,7 +3,7 @@
<plugin
xmlns=
"http://apache.org/cordova/ns/plugins/1.0"
xmlns:android=
"http://schemas.android.com/apk/res/android"
id=
"de.appplant.cordova.plugin.local-notifications"
version=
"0.
4.0
"
>
version=
"0.
6.0dev
"
>
<name>
LocalNotifications
</name>
...
...
@@ -23,21 +23,18 @@
<!-- ios -->
<platform
name=
"ios"
>
<config-file
target=
"config.xml"
parent=
"/*"
>
<feature
name=
"LocalNotification"
>
<param
name=
"ios-package"
value=
"APPLocalNotification"
/>
</feature>
<feature
name=
"LocalNotification"
>
<param
name=
"ios-package"
value=
"APPLocalNotification"
/>
</feature>
</config-file>
<header-file
src=
"src/ios/APPLocalNotification.h"
/>
<source-file
src=
"src/ios/APPLocalNotification.m"
/>
<header-file
src=
"src/ios/APPLocalNotification.h"
/>
<source-file
src=
"src/ios/APPLocalNotification.m"
/>
</platform>
<!-- android -->
<platform
name=
"android"
>
<config-file
target=
"res/xml/config.xml"
parent=
"/*"
>
<feature
name=
"LocalNotification"
>
<param
name=
"android-package"
value=
"de.appplant.cordova.plugin.LocalNotification"
/>
...
...
@@ -73,7 +70,17 @@
<source-file
src=
"src/android/LocalNotificationOptions.java"
target-dir=
"src/de/appplant/cordova/plugin"
/>
<source-file
src=
"src/android/LocalNotificationRestore.java"
target-dir=
"src/de/appplant/cordova/plugin"
/>
<source-file
src=
"src/android/LocalNotification.java"
target-dir=
"src/de/appplant/cordova/plugin"
/>
</platform>
<!-- wp8 -->
<platform
name=
"wp8"
>
<config-file
target=
"config.xml"
parent=
"/*"
>
<feature
name=
"LocalNotification"
>
<param
name=
"wp-package"
value=
"LocalNotification"
/>
</feature>
</config-file>
<source-file
src=
"src/wp8/LocalNotification.cs"
/>
</platform>
</plugin>
src/wp8/LocalNotification.cs
0 → 100644
View file @
24360db0
/**
* LocalNotification.cs
* Cordova LocalNotification Plugin
*
* Created by Sebastian Katzer (github.com/katzer) on 07/10/2013.
* Copyright 2013 Sebastian Katzer. All rights reserved.
* GPL v2 licensed
*/
using
System
;
using
System.Linq
;
using
Microsoft.Phone.Shell
;
using
WPCordovaClassLib.Cordova
;
using
WPCordovaClassLib.Cordova.Commands
;
using
WPCordovaClassLib.Cordova.JSON
;
namespace
Cordova.Extension.Commands
{
public
class
LocalNotification
:
BaseCommand
{
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment