plugin.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <plugin
  3. xmlns="http://apache.org/cordova/ns/plugins/1.0"
  4. id="cordova-plugin-actionsheet"
  5. version="2.3.3">
  6. <name>ActionSheet</name>
  7. <description>Show a sheet of options the user can choose from.</description>
  8. <author>Eddy Verbruggen</author>
  9. <license>MIT</license>
  10. <keywords>ActionSheet, UIActionSheet, AlertDialog, Dialog, List, Picker, Popup</keywords>
  11. <repo>https://github.com/EddyVerbruggen/cordova-plugin-actionsheet.git</repo>
  12. <issue>https://github.com/EddyVerbruggen/cordova-plugin-actionsheet/issues</issue>
  13. <engines>
  14. <engine name="cordova" version=">=3.0.0"/>
  15. </engines>
  16. <js-module src="www/ActionSheet.js" name="ActionSheet">
  17. <clobbers target="window.plugins.actionsheet"/>
  18. </js-module>
  19. <!-- ios -->
  20. <platform name="ios">
  21. <config-file target="config.xml" parent="/*">
  22. <feature name="ActionSheet">
  23. <param name="ios-package" value="ActionSheet"/>
  24. </feature>
  25. </config-file>
  26. <header-file src="src/ios/ActionSheet.h"/>
  27. <source-file src="src/ios/ActionSheet.m"/>
  28. </platform>
  29. <!-- android -->
  30. <platform name="android">
  31. <config-file target="res/xml/config.xml" parent="/*">
  32. <feature name="ActionSheet">
  33. <param name="android-package" value="nl.xservices.plugins.actionsheet.ActionSheet"/>
  34. </feature>
  35. </config-file>
  36. <source-file src="src/android/ActionSheet.java" target-dir="src/nl/xservices/plugins/actionsheet"/>
  37. </platform>
  38. <!-- wp8 -->
  39. <platform name="wp8">
  40. <config-file target="config.xml" parent="/*">
  41. <feature name="ActionSheet">
  42. <param name="wp-package" value="ActionSheet"/>
  43. </feature>
  44. </config-file>
  45. <source-file src="src/wp8/ActionSheet.cs" />
  46. </platform>
  47. <!--windows-->
  48. <platform name="windows">
  49. <js-module src="src/windows/ActionSheetProxy.js" name="ActionSheetProxy">
  50. <merges target="" />
  51. </js-module>
  52. </platform>
  53. <!--browser-->
  54. <platform name="browser">
  55. <js-module src="src/browser/ActionSheetProxy.js" name="ActionSheetProxy">
  56. <merges target="" />
  57. </js-module>
  58. </platform>
  59. </plugin>