Repositorio del curso CCOM4030 el semestre B91 del proyecto kilometro0

config.xml 3.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <access origin="*"/>
  29. <!-- <content src="http://mysite.com/myapp.html" /> for external pages -->
  30. <content src="index.html" />
  31. <!-- Preferences for iOS -->
  32. <preference name="AllowInlineMediaPlayback" value="false" />
  33. <preference name="BackupWebStorage" value="cloud" />
  34. <preference name="DisallowOverscroll" value="false" />
  35. <preference name="EnableViewportScale" value="false" />
  36. <preference name="KeyboardDisplayRequiresUserAction" value="true" />
  37. <preference name="MediaPlaybackRequiresUserAction" value="false" />
  38. <preference name="SuppressesIncrementalRendering" value="false" />
  39. <preference name="SuppressesLongPressGesture" value="true" />
  40. <preference name="Suppresses3DTouchGesture" value="false" />
  41. <preference name="GapBetweenPages" value="0" />
  42. <preference name="PageLength" value="0" />
  43. <preference name="PaginationBreakingMode" value="page" /> <!-- page, column -->
  44. <preference name="PaginationMode" value="unpaginated" /> <!-- unpaginated, leftToRight, topToBottom, bottomToTop, rightToLeft -->
  45. <!-- This settings is just used by the CDVViewControllerTest to assert which config file has been loaded -->
  46. <preference name="test_CDVConfigFile" value="config.xml" />
  47. <feature name="LocalStorage">
  48. <param name="ios-package" value="CDVLocalStorage"/>
  49. </feature>
  50. <feature name="HandleOpenUrl">
  51. <param name="ios-package" value="CDVHandleOpenURL"/>
  52. <param name="onload" value="true"/>
  53. </feature>
  54. <feature name="IntentAndNavigationFilter">
  55. <param name="ios-package" value="CDVIntentAndNavigationFilter"/>
  56. <param name="onload" value="true"/>
  57. </feature>
  58. <feature name="GestureHandler">
  59. <param name="ios-package" value="CDVGestureHandler"/>
  60. <param name="onload" value="true"/>
  61. </feature>
  62. </widget>