Geen omschrijving

config.xml 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <widget xmlns="http://www.w3.org/ns/widgets" id="com.example.helloworld" version="1.0.0">
  3. <name>Asistencia</name>
  4. <description/>
  5. <author/>
  6. <content src="index.html"/>
  7. <access origin="*"/>
  8. <allow-navigation href="*"/>
  9. <allow-intent href="itms:*"/>
  10. <allow-intent href="itms-apps:*"/>
  11. <preference name="DisallowOverscroll" value="true"/>
  12. <preference name="Orientation" value="default"/>
  13. <preference name="loglevel" value="DEBUG"/>
  14. <preference name="AndroidLaunchMode" value="singleTop"/>
  15. <preference name="ErrorUrl" value=""/>
  16. <preference name="Fullscreen" value="false"/>
  17. <preference name="KeepRunning" value="true"/>
  18. <preference name="SplashScreen" value="screen"/>
  19. <preference name="SplashScreenDelay" value="1000"/>
  20. <preference name="AllowInlineMediaPlayback" value="false"/>
  21. <preference name="AutoHideSplashScreen" value="true"/>
  22. <preference name="BackupWebStorage" value="cloud"/>
  23. <preference name="EnableViewportScale" value="false"/>
  24. <preference name="FadeSplashScreen" value="true"/>
  25. <preference name="FadeSplashScreenDuration" value="250"/>
  26. <preference name="KeyboardDisplayRequiresUserAction" value="true"/>
  27. <preference name="MediaPlaybackRequiresUserAction" value="false"/>
  28. <preference name="ShowSplashScreenSpinner" value="false"/>
  29. <preference name="SuppressesIncrementalRendering" value="false"/>
  30. <preference name="TopActivityIndicator" value="gray"/>
  31. <preference name="GapBetweenPages" value="0"/>
  32. <preference name="PageLength" value="0"/>
  33. <preference name="PaginationBreakingMode" value="page"/>
  34. <preference name="PaginationMode" value="unpaginated"/>
  35. <feature name="LocalStorage">
  36. <param name="ios-package" value="CDVLocalStorage"/>
  37. </feature>
  38. <preference name="UIWebViewDecelerationSpeed" value="normal"/>
  39. <preference name="monaca:AndroidIsPackageNameSeparate" value="false"/>
  40. <preference name="ios-XCBuildConfiguration-TARGETED_DEVICE_FAMILY" value="1,2"/>
  41. <platform name="ios">
  42. <splash src="/res/ios/screen/Default@2x~universal~anyany.png"/>
  43. <icon src="/res/ios/icon/icon.png" width="57" height="57"/>
  44. <icon src="/res/ios/icon/icon@2x.png" width="114" height="114"/>
  45. <icon src="/res/ios/icon/icon-72.png" width="72" height="72"/>
  46. <icon src="/res/ios/icon/icon-72@2x.png" width="144" height="144"/>
  47. <icon src="/res/ios/icon/icon-60.png" width="60" height="60"/>
  48. <icon src="/res/ios/icon/icon-60@2x.png" width="120" height="120"/>
  49. <icon src="/res/ios/icon/icon-60@3x.png" width="180" height="180"/>
  50. <icon src="/res/ios/icon/icon-76.png" width="76" height="76"/>
  51. <icon src="/res/ios/icon/icon-76@2x.png" width="152" height="152"/>
  52. <icon src="/res/ios/icon/icon-40.png" width="40" height="40"/>
  53. <icon src="/res/ios/icon/icon-40@2x.png" width="80" height="80"/>
  54. <icon src="/res/ios/icon/icon-50.png" width="50" height="50"/>
  55. <icon src="/res/ios/icon/icon-50@2x.png" width="100" height="100"/>
  56. <icon src="/res/ios/icon/icon-small.png" width="29" height="29"/>
  57. <icon src="/res/ios/icon/icon-small@2x.png" width="58" height="58"/>
  58. <icon src="/res/ios/icon/icon-small@3x.png" width="87" height="87"/>
  59. <icon src="/res/ios/icon/icon-83.5@2x~ipad.png" width="167" height="167"/>
  60. <icon src="/res/ios/icon/icon-1024.png" width="1024" height="1024"/>
  61. <config-file platform="ios" parent="CFBundleLocalizations" target="*-Info.plist">
  62. <array>
  63. <string>en</string>
  64. </array>
  65. </config-file>
  66. </platform>
  67. <platform name="android">
  68. <icon src="/res/android/icon/ldpi.png" density="ldpi"/>
  69. <icon src="/res/android/icon/mdpi.png" density="mdpi"/>
  70. <icon src="/res/android/icon/hdpi.png" density="hdpi"/>
  71. <icon src="/res/android/icon/xhdpi.png" density="xhdpi"/>
  72. <icon src="/res/android/icon/xxhdpi.png" density="xxhdpi"/>
  73. <icon src="/res/android/icon/xxxhdpi.png" density="xxxhdpi"/>
  74. <splash src="/res/android/screen/splash-port-ldpi.9.png" density="port-ldpi"/>
  75. <splash src="/res/android/screen/splash-port-mdpi.9.png" density="port-mdpi"/>
  76. <splash src="/res/android/screen/splash-port-hdpi.9.png" density="port-hdpi"/>
  77. <splash src="/res/android/screen/splash-port-xhdpi.9.png" density="port-xhdpi"/>
  78. <splash src="/res/android/screen/splash-port-xxhdpi.9.png" density="port-xxhdpi"/>
  79. <splash src="/res/android/screen/splash-port-xxxhdpi.9.png" density="port-xxxhdpi"/>
  80. <splash src="/res/android/screen/splash-mdpi.png" density="mdpi"/>
  81. </platform>
  82. <platform name="electron">
  83. <icon src="/res/electron/icon/icon_electron_512.png" width="512" height="512"/>
  84. <splash src="/res/electron/screen/electron_splash_image.png" width="620" height="300"/>
  85. <preference name="SplashScreenWidth" value="620"/>
  86. <preference name="SplashScreenHeight" value="300"/>
  87. <preference name="ShowSplashScreen" value="false"/>
  88. </platform>
  89. </widget>