├── .DS_Store ├── .gitignore ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── images ├── android-actions.png ├── android-chat.png ├── android-inbox.png ├── android-progress.png ├── android-reply-2.png ├── android-reply.png ├── android-stack.png ├── ios-actions.png ├── ios-basic.png ├── ios-permission.png ├── logo.png └── windows-actions.png ├── package.json ├── plugin.xml ├── src ├── android │ ├── ClearReceiver.java │ ├── ClickReceiver.java │ ├── LocalNotification.java │ ├── RestoreReceiver.java │ ├── TriggerReceiver.java │ ├── build │ │ └── localnotification.gradle │ ├── notification │ │ ├── Builder.java │ │ ├── Manager.java │ │ ├── Notification.java │ │ ├── NotificationVolumeManager.java │ │ ├── Options.java │ │ ├── Request.java │ │ ├── action │ │ │ ├── Action.java │ │ │ └── ActionGroup.java │ │ ├── receiver │ │ │ ├── AbstractClearReceiver.java │ │ │ ├── AbstractClickReceiver.java │ │ │ ├── AbstractNotificationReceiver.java │ │ │ ├── AbstractRestoreReceiver.java │ │ │ └── AbstractTriggerReceiver.java │ │ ├── trigger │ │ │ ├── DateTrigger.java │ │ │ ├── IntervalTrigger.java │ │ │ └── MatchTrigger.java │ │ └── util │ │ │ ├── AssetProvider.java │ │ │ ├── AssetUtil.java │ │ │ └── LaunchUtils.java │ └── xml │ │ └── localnotification_provider_paths.xml ├── ios │ ├── APPLocalNotification.h │ ├── APPLocalNotification.m │ ├── APPNotificationCategory.h │ ├── APPNotificationCategory.m │ ├── APPNotificationContent.h │ ├── APPNotificationContent.m │ ├── APPNotificationOptions.h │ ├── APPNotificationOptions.m │ ├── UNNotificationRequest+APPLocalNotification.h │ ├── UNNotificationRequest+APPLocalNotification.m │ ├── UNUserNotificationCenter+APPLocalNotification.h │ └── UNUserNotificationCenter+APPLocalNotification.m └── windows │ ├── LocalNotificationProxy.js │ ├── LocalNotificationProxy │ ├── .vs │ │ └── LocalNotificationProxy │ │ │ └── v15 │ │ │ └── .suo │ ├── LocalNotificationProxy.sln │ └── LocalNotificationProxy │ │ ├── LocalNotification │ │ ├── ActionGroup.cs │ │ ├── Builder.cs │ │ ├── Manager.cs │ │ ├── Notification.cs │ │ ├── Options.cs │ │ ├── Request.cs │ │ ├── Toast │ │ │ ├── Button.cs │ │ │ ├── Every.cs │ │ │ ├── IAction.cs │ │ │ ├── Input.cs │ │ │ ├── ProgressBar.cs │ │ │ └── Trigger.cs │ │ └── Trigger │ │ │ ├── DateTrigger.cs │ │ │ ├── IntervalTrigger.cs │ │ │ └── MatchTrigger.cs │ │ ├── LocalNotificationProxy.cs │ │ ├── LocalNotificationProxy.csproj │ │ └── Properties │ │ └── AssemblyInfo.cs │ └── lib.UW │ ├── ARM │ ├── LocalNotificationProxy.winmd │ └── Microsoft.Toolkit.Uwp.Notifications.dll │ ├── x64 │ ├── LocalNotificationProxy.winmd │ └── Microsoft.Toolkit.Uwp.Notifications.dll │ └── x86 │ ├── LocalNotificationProxy.winmd │ └── Microsoft.Toolkit.Uwp.Notifications.dll └── www └── local-notification.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/README.md -------------------------------------------------------------------------------- /images/android-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/android-actions.png -------------------------------------------------------------------------------- /images/android-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/android-chat.png -------------------------------------------------------------------------------- /images/android-inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/android-inbox.png -------------------------------------------------------------------------------- /images/android-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/android-progress.png -------------------------------------------------------------------------------- /images/android-reply-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/android-reply-2.png -------------------------------------------------------------------------------- /images/android-reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/android-reply.png -------------------------------------------------------------------------------- /images/android-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/android-stack.png -------------------------------------------------------------------------------- /images/ios-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/ios-actions.png -------------------------------------------------------------------------------- /images/ios-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/ios-basic.png -------------------------------------------------------------------------------- /images/ios-permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/ios-permission.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/windows-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/images/windows-actions.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/ClearReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/ClearReceiver.java -------------------------------------------------------------------------------- /src/android/ClickReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/ClickReceiver.java -------------------------------------------------------------------------------- /src/android/LocalNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/LocalNotification.java -------------------------------------------------------------------------------- /src/android/RestoreReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/RestoreReceiver.java -------------------------------------------------------------------------------- /src/android/TriggerReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/TriggerReceiver.java -------------------------------------------------------------------------------- /src/android/build/localnotification.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/build/localnotification.gradle -------------------------------------------------------------------------------- /src/android/notification/Builder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/Builder.java -------------------------------------------------------------------------------- /src/android/notification/Manager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/Manager.java -------------------------------------------------------------------------------- /src/android/notification/Notification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/Notification.java -------------------------------------------------------------------------------- /src/android/notification/NotificationVolumeManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/NotificationVolumeManager.java -------------------------------------------------------------------------------- /src/android/notification/Options.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/Options.java -------------------------------------------------------------------------------- /src/android/notification/Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/Request.java -------------------------------------------------------------------------------- /src/android/notification/action/Action.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/action/Action.java -------------------------------------------------------------------------------- /src/android/notification/action/ActionGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/action/ActionGroup.java -------------------------------------------------------------------------------- /src/android/notification/receiver/AbstractClearReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/receiver/AbstractClearReceiver.java -------------------------------------------------------------------------------- /src/android/notification/receiver/AbstractClickReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/receiver/AbstractClickReceiver.java -------------------------------------------------------------------------------- /src/android/notification/receiver/AbstractNotificationReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/receiver/AbstractNotificationReceiver.java -------------------------------------------------------------------------------- /src/android/notification/receiver/AbstractRestoreReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/receiver/AbstractRestoreReceiver.java -------------------------------------------------------------------------------- /src/android/notification/receiver/AbstractTriggerReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/receiver/AbstractTriggerReceiver.java -------------------------------------------------------------------------------- /src/android/notification/trigger/DateTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/trigger/DateTrigger.java -------------------------------------------------------------------------------- /src/android/notification/trigger/IntervalTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/trigger/IntervalTrigger.java -------------------------------------------------------------------------------- /src/android/notification/trigger/MatchTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/trigger/MatchTrigger.java -------------------------------------------------------------------------------- /src/android/notification/util/AssetProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/util/AssetProvider.java -------------------------------------------------------------------------------- /src/android/notification/util/AssetUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/util/AssetUtil.java -------------------------------------------------------------------------------- /src/android/notification/util/LaunchUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/notification/util/LaunchUtils.java -------------------------------------------------------------------------------- /src/android/xml/localnotification_provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/android/xml/localnotification_provider_paths.xml -------------------------------------------------------------------------------- /src/ios/APPLocalNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/APPLocalNotification.h -------------------------------------------------------------------------------- /src/ios/APPLocalNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/APPLocalNotification.m -------------------------------------------------------------------------------- /src/ios/APPNotificationCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/APPNotificationCategory.h -------------------------------------------------------------------------------- /src/ios/APPNotificationCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/APPNotificationCategory.m -------------------------------------------------------------------------------- /src/ios/APPNotificationContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/APPNotificationContent.h -------------------------------------------------------------------------------- /src/ios/APPNotificationContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/APPNotificationContent.m -------------------------------------------------------------------------------- /src/ios/APPNotificationOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/APPNotificationOptions.h -------------------------------------------------------------------------------- /src/ios/APPNotificationOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/APPNotificationOptions.m -------------------------------------------------------------------------------- /src/ios/UNNotificationRequest+APPLocalNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/UNNotificationRequest+APPLocalNotification.h -------------------------------------------------------------------------------- /src/ios/UNNotificationRequest+APPLocalNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/UNNotificationRequest+APPLocalNotification.m -------------------------------------------------------------------------------- /src/ios/UNUserNotificationCenter+APPLocalNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/UNUserNotificationCenter+APPLocalNotification.h -------------------------------------------------------------------------------- /src/ios/UNUserNotificationCenter+APPLocalNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/ios/UNUserNotificationCenter+APPLocalNotification.m -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy.js -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/.vs/LocalNotificationProxy/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/.vs/LocalNotificationProxy/v15/.suo -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy.sln -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/ActionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/ActionGroup.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Builder.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Manager.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Notification.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Options.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Request.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/Button.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/Every.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/Every.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/IAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/IAction.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/Input.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/ProgressBar.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Toast/Trigger.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Trigger/DateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Trigger/DateTrigger.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Trigger/IntervalTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Trigger/IntervalTrigger.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Trigger/MatchTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotification/Trigger/MatchTrigger.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotificationProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotificationProxy.cs -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotificationProxy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/LocalNotificationProxy.csproj -------------------------------------------------------------------------------- /src/windows/LocalNotificationProxy/LocalNotificationProxy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/LocalNotificationProxy/LocalNotificationProxy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/windows/lib.UW/ARM/LocalNotificationProxy.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/lib.UW/ARM/LocalNotificationProxy.winmd -------------------------------------------------------------------------------- /src/windows/lib.UW/ARM/Microsoft.Toolkit.Uwp.Notifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/lib.UW/ARM/Microsoft.Toolkit.Uwp.Notifications.dll -------------------------------------------------------------------------------- /src/windows/lib.UW/x64/LocalNotificationProxy.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/lib.UW/x64/LocalNotificationProxy.winmd -------------------------------------------------------------------------------- /src/windows/lib.UW/x64/Microsoft.Toolkit.Uwp.Notifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/lib.UW/x64/Microsoft.Toolkit.Uwp.Notifications.dll -------------------------------------------------------------------------------- /src/windows/lib.UW/x86/LocalNotificationProxy.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/lib.UW/x86/LocalNotificationProxy.winmd -------------------------------------------------------------------------------- /src/windows/lib.UW/x86/Microsoft.Toolkit.Uwp.Notifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/src/windows/lib.UW/x86/Microsoft.Toolkit.Uwp.Notifications.dll -------------------------------------------------------------------------------- /www/local-notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkellypa/cordova-plugin-local-notifications/HEAD/www/local-notification.js --------------------------------------------------------------------------------