plugin.xml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
  3. id="de.appplant.cordova.plugin.local-notifications"
  4. version="0.0.1">
  5. <name>LocalNotifications</name>
  6. <description>A bunch of local-notification plugins for Cordova 3.x.x</description>
  7. <keywords>notification, localnotification, ios</keywords>
  8. <license>GPL v2 License</license>
  9. <author>Sebastián Katzer (github.com/katzer)</author>
  10. <engines>
  11. <engine name="cordova" version=">=3.0.0" />
  12. </engines>
  13. <!-- ios -->
  14. <platform name="ios">
  15. <config-file target="config.xml" parent="/*">
  16. <feature name="LocalNotofication">
  17. <param name="ios-package" value="APPLocalNotification"/>
  18. </feature>
  19. </config-file>
  20. <js-module src="www/local-notification.js" name="LocalNotification">
  21. <clobbers target="plugin.notification.local" />
  22. </js-module>
  23. <header-file src="src/ios/APPLocalNotification.h" />
  24. <source-file src="src/ios/APPLocalNotification.m" />
  25. </platform>
  26. </plugin>