plugin.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. * Copyright (c) 2013-2016 by appPlant UG. All rights reserved.
  4. *
  5. * @APPPLANT_LICENSE_HEADER_START@
  6. *
  7. * This file contains Original Code and/or Modifications of Original Code
  8. * as defined in and that are subject to the Apache License
  9. * Version 2.0 (the 'License'). You may not use this file except in
  10. * compliance with the License. Please obtain a copy of the License at
  11. * http://opensource.org/licenses/Apache-2.0/ and read it before using this
  12. * file.
  13. *
  14. * The Original Code and all software distributed under the License are
  15. * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  16. * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  17. * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
  19. * Please see the License for the specific language governing rights and
  20. * limitations under the License.
  21. *
  22. * @APPPLANT_LICENSE_HEADER_END@
  23. -->
  24. <plugin id="cordova-plugin-app-event"
  25. xmlns="http://apache.org/cordova/ns/plugins/1.0"
  26. xmlns:android="http://schemas.android.com/apk/res/android"
  27. version="1.2.0">
  28. <name>Application Events</name>
  29. <description>Broadcasts various events to make them available for 3rd parties</description>
  30. <keywords>appplant UIApplicationDelegate didRegisterUserNotificationSettings didReceiveLocalNotification didFinishLaunchingWithOptions</keywords>
  31. <repo>https://github.com/katzer/cordova-plugin-app-delegate.git</repo>
  32. <license>Apache 2.0</license>
  33. <author>Sebastián Katzer</author>
  34. <!-- cordova -->
  35. <engines>
  36. <engine name="cordova" version=">=3.6.0" />
  37. </engines>
  38. <!-- ios -->
  39. <platform name="ios">
  40. <header-file src="src/ios/AppDelegate+APPAppEvent.h" />
  41. <source-file src="src/ios/AppDelegate+APPAppEvent.m" />
  42. <header-file src="src/ios/CDVPlugin+APPAppEvent.h" />
  43. <source-file src="src/ios/CDVPlugin+APPAppEvent.m" />
  44. <header-file src="src/ios/APPAppEventDelegate.h" />
  45. </platform>
  46. </plugin>