Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one
  4. or more contributor license agreements. See the NOTICE file
  5. distributed with this work for additional information
  6. regarding copyright ownership. The ASF licenses this file
  7. to you under the Apache License, Version 2.0 (the
  8. "License"); you may not use this file except in compliance
  9. with the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing,
  12. software distributed under the License is distributed on an
  13. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. KIND, either express or implied. See the License for the
  15. specific language governing permissions and limitations
  16. under the License.
  17. -->
  18. <widget xmlns = "http://www.w3.org/ns/widgets"
  19. id = "io.cordova.helloCordova"
  20. version = "2.0.0">
  21. <name>Hello Cordova</name>
  22. <description>
  23. A sample Apache Cordova application that responds to the deviceready event.
  24. </description>
  25. <author href="http://cordova.io" email="dev@cordova.apache.org">
  26. Apache Cordova Team
  27. </author>
  28. <!-- <content src="http://mysite.com/myapp.html" /> for external pages -->
  29. <content src="index.html" />
  30. <!-- Whitelist docs: https://github.com/apache/cordova-plugin-whitelist -->
  31. <access origin="*" />
  32. <!-- Grant certain URLs the ability to launch external applications. This
  33. behaviour is set to match that of Cordova versions before 3.6.0, and
  34. should be reviewed before launching an application in production. It
  35. may be changed in the future. -->
  36. <allow-intent href="http://*/*" />
  37. <allow-intent href="https://*/*" />
  38. <allow-intent href="tel:*" />
  39. <allow-intent href="sms:*" />
  40. <allow-intent href="mailto:*" />
  41. <allow-intent href="geo:*" />
  42. <allow-intent href="market:*" />
  43. <preference name="loglevel" value="DEBUG" />
  44. <!--
  45. <preference name="splashscreen" value="splash" />
  46. <preference name="backgroundColor" value="0xFFF" />
  47. <preference name="loadUrlTimeoutValue" value="20000" />
  48. <preference name="InAppBrowserStorageEnabled" value="true" />
  49. <preference name="disallowOverscroll" value="true" />
  50. -->
  51. </widget>