| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- * Apache 2.0 License
- *
- * Copyright (c) Sebastian Katzer 2017
- *
- * This file contains Original Code and/or Modifications of Original Code
- * as defined in and that are subject to the Apache License
- * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://opensource.org/licenses/Apache-2.0/ and read it before using this
- * file.
- *
- * The Original Code and all software distributed under the License are
- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
- * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- * Please see the License for the specific language governing rights and
- * limitations under the License.
- -->
- <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
- xmlns:android="http://schemas.android.com/apk/res/android"
- id="cordova-plugin-local-notification"
- version="0.9.0-beta.3">
- <name>LocalNotification</name>
- <description>Schedules and queries for local notifications</description>
- <repo>https://github.com/katzer/cordova-plugin-local-notifications.git</repo>
- <keywords>appplant, notification, local notification, user notification</keywords>
- <license>Apache 2.0</license>
- <author>Sebastián Katzer</author>
- <!-- cordova -->
- <engines>
- <engine name="cordova" version=">=3.6.0" />
- <engine name="cordova-plugman" version=">=4.3.0" />
- <engine name="cordova-android" version=">=6.0.0" />
- <engine name="cordova-windows" version=">=4.2.0" />
- <engine name="android-sdk" version=">=26" />
- <engine name="apple-ios" version=">=10.0.0" />
- </engines>
- <!-- dependencies -->
- <dependency id="cordova-plugin-device" />
- <dependency id="cordova-plugin-badge" version=">=0.8.5" />
- <!-- js -->
- <js-module src="www/local-notification.js" name="LocalNotification">
- <clobbers target="cordova.plugins.notification.local" />
- </js-module>
- <!-- ios -->
- <platform name="ios">
- <config-file target="config.xml" parent="/*">
- <feature name="LocalNotification">
- <param name="ios-package" value="APPLocalNotification" onload="true" />
- <param name="onload" value="true" />
- </feature>
- </config-file>
- <framework src="UserNotifications.framework" />
- <framework src="CoreLocation.framework" />
- <header-file src="src/ios/APPLocalNotification.h" />
- <source-file src="src/ios/APPLocalNotification.m" />
- <header-file src="src/ios/APPNotificationContent.h" />
- <source-file src="src/ios/APPNotificationContent.m" />
- <header-file src="src/ios/APPNotificationOptions.h" />
- <source-file src="src/ios/APPNotificationOptions.m" />
- <header-file src="src/ios/UNUserNotificationCenter+APPLocalNotification.h" />
- <source-file src="src/ios/UNUserNotificationCenter+APPLocalNotification.m" />
- <header-file src="src/ios/UNNotificationRequest+APPLocalNotification.h" />
- <source-file src="src/ios/UNNotificationRequest+APPLocalNotification.m" />
- </platform>
- <!-- android -->
- <platform name="android">
- <framework src="com.android.support:support-v4:26.+" />
- <framework src="src/android/build/localnotification.gradle" custom="true" type="gradleReference"/>
- <config-file target="res/xml/config.xml" parent="/*">
- <feature name="LocalNotification">
- <param name="android-package" value="de.appplant.cordova.plugin.localnotification.LocalNotification"/>
- </feature>
- </config-file>
- <config-file target="AndroidManifest.xml" parent="/manifest/application">
- <provider
- android:name="de.appplant.cordova.plugin.notification.util.AssetProvider"
- android:authorities="${applicationId}.provider"
- android:exported="false"
- android:grantUriPermissions="true" >
- <meta-data
- android:name="android.support.FILE_PROVIDER_PATHS"
- android:resource="@xml/localnotification_provider_paths"/>
- </provider>
- <receiver
- android:name="de.appplant.cordova.plugin.localnotification.TriggerReceiver"
- android:exported="false" />
- <receiver
- android:name="de.appplant.cordova.plugin.localnotification.ClearReceiver"
- android:exported="false" />
- <activity
- android:name="de.appplant.cordova.plugin.localnotification.ClickReceiver"
- android:launchMode="singleInstance"
- android:theme="@android:style/Theme.Translucent"
- android:exported="false" />
- <receiver
- android:name="de.appplant.cordova.plugin.localnotification.RestoreReceiver"
- android:directBootAware="true"
- android:exported="false" >
- <intent-filter>
- <action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
- <action android:name="android.intent.action.BOOT_COMPLETED" />
- </intent-filter>
- </receiver>
- </config-file>
- <config-file target="AndroidManifest.xml" parent="/manifest">
- <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
- <uses-permission android:name="android.permission.WAKE_LOCK" />
- </config-file>
- <source-file
- src="src/android/xml/localnotification_provider_paths.xml"
- target-dir="res/xml" />
- <source-file
- src="src/android/LocalNotification.java"
- target-dir="src/de/appplant/cordova/plugin/localnotification" />
- <source-file
- src="src/android/TriggerReceiver.java"
- target-dir="src/de/appplant/cordova/plugin/localnotification" />
- <source-file
- src="src/android/ClickReceiver.java"
- target-dir="src/de/appplant/cordova/plugin/localnotification" />
- <source-file
- src="src/android/ClearReceiver.java"
- target-dir="src/de/appplant/cordova/plugin/localnotification" />
- <source-file
- src="src/android/RestoreReceiver.java"
- target-dir="src/de/appplant/cordova/plugin/localnotification" />
- <source-file
- src="src/android/notification/action/Action.java"
- target-dir="src/de/appplant/cordova/plugin/notification/action" />
- <source-file
- src="src/android/notification/action/ActionGroup.java"
- target-dir="src/de/appplant/cordova/plugin/notification/action" />
- <source-file
- src="src/android/notification/receiver/AbstractClearReceiver.java"
- target-dir="src/de/appplant/cordova/plugin/notification/receiver" />
- <source-file
- src="src/android/notification/receiver/AbstractClickReceiver.java"
- target-dir="src/de/appplant/cordova/plugin/notification/receiver" />
- <source-file
- src="src/android/notification/receiver/AbstractRestoreReceiver.java"
- target-dir="src/de/appplant/cordova/plugin/notification/receiver" />
- <source-file
- src="src/android/notification/receiver/AbstractTriggerReceiver.java"
- target-dir="src/de/appplant/cordova/plugin/notification/receiver" />
- <source-file
- src="src/android/notification/trigger/DateTrigger.java"
- target-dir="src/de/appplant/cordova/plugin/notification/trigger" />
- <source-file
- src="src/android/notification/trigger/IntervalTrigger.java"
- target-dir="src/de/appplant/cordova/plugin/notification/trigger" />
- <source-file
- src="src/android/notification/trigger/MatchTrigger.java"
- target-dir="src/de/appplant/cordova/plugin/notification/trigger" />
- <source-file
- src="src/android/notification/util/AssetProvider.java"
- target-dir="src/de/appplant/cordova/plugin/notification/util" />
- <source-file
- src="src/android/notification/util/AssetUtil.java"
- target-dir="src/de/appplant/cordova/plugin/notification/util" />
- <source-file
- src="src/android/notification/Builder.java"
- target-dir="src/de/appplant/cordova/plugin/notification" />
- <source-file
- src="src/android/notification/Manager.java"
- target-dir="src/de/appplant/cordova/plugin/notification" />
- <source-file
- src="src/android/notification/Notification.java"
- target-dir="src/de/appplant/cordova/plugin/notification" />
- <source-file
- src="src/android/notification/Options.java"
- target-dir="src/de/appplant/cordova/plugin/notification" />
- <source-file
- src="src/android/notification/Request.java"
- target-dir="src/de/appplant/cordova/plugin/notification" />
- </platform>
- <!-- 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"/>
- <framework src="src/windows/lib.UW/x86/Microsoft.Toolkit.Uwp.Notifications.dll" target-dir="x86" arch="x86" custom="true"/>
- <framework src="src/windows/lib.UW/x64/Microsoft.Toolkit.Uwp.Notifications.dll" target-dir="x64" arch="x64" custom="true"/>
- <framework src="src/windows/lib.UW/ARM/Microsoft.Toolkit.Uwp.Notifications.dll" target-dir="ARM" arch="ARM" custom="true"/>
- <js-module src="src/windows/LocalNotificationProxy.js" name="LocalNotification.Proxy" >
- <merges target="" />
- </js-module>
- </platform>
- </plugin>
|