Repositorio del curso CCOM4030 el semestre B91 del proyecto kilometro0

plugin.xml 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright 2013 Anis Kadri
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing,
  9. software distributed under the License is distributed on an
  10. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  11. KIND, either express or implied. See the License for the
  12. specific language governing permissions and limitations
  13. under the License.
  14. -->
  15. <plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
  16. xmlns:android="http://schemas.android.com/apk/res/android"
  17. id="org.test.plugins.weblessplugin"
  18. version="0.6.0">
  19. <name>Webless Plugin</name>
  20. <config-file target="config.xml" parent="/*">
  21. <access origin="build.phonegap.com" />
  22. <access origin="s3.amazonaws.com" />
  23. </config-file>
  24. <!-- ios -->
  25. <platform name="ios">
  26. <!-- CDV 2.4 had a /cordova/plugins instead of /widget/plugins so ignored! -->
  27. <!-- CDV 2.5+ -->
  28. <config-file target="config.xml" parent="/widget/plugins">
  29. <plugin name="org.test.plugins.weblessplugin"
  30. value="WeblessPluginCommand"/>
  31. </config-file>
  32. <resource-file src="src/ios/WeblessPlugin.bundle" />
  33. <resource-file src="src/ios/WeblessPluginViewController.xib" />
  34. <header-file src="src/ios/WeblessPluginCommand.h" />
  35. <header-file src="src/ios/WeblessPluginViewController.h" />
  36. <source-file src="src/ios/WeblessPluginCommand.m" />
  37. <source-file src="src/ios/WeblessPluginViewController.m" />
  38. <!-- framework for testing (not actual dependency of org.test.plugins.weblessplugin -->
  39. <framework src="libsqlite3.dylib" />
  40. </platform>
  41. </plugin>