Advertisement
Guest User

Untitled

a guest
Oct 17th, 2015
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.68 KB | None | 0 0
  1. <widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com.urbanpigeonmedia.fallball" version="1.0.0">
  2. <name>Fall Ball</name>
  3. <description>
  4.  
  5. The goal is to make the ball fall into the same color. Tap the screen and play the game!
  6.  
  7. </description>
  8. <author href="http://urbanpigeonmedia.com" email="urbanpigeonmedia@gmail.com">PhoneGap Team</author>
  9. <content src="index.html"/>
  10. <preference name="permissions" value="none"/>
  11. <preference name="orientation" value="default"/>
  12. <preference name="target-device" value="universal"/>
  13. <preference name="fullscreen" value="true"/>
  14. <preference name="webviewbounce" value="true"/>
  15. <preference name="prerendered-icon" value="true"/>
  16. <preference name="stay-in-webview" value="false"/>
  17. <preference name="ios-statusbarstyle" value="black-opaque"/>
  18. <preference name="detect-data-types" value="true"/>
  19. <preference name="exit-on-suspend" value="false"/>
  20. <preference name="show-splash-screen-spinner" value="true"/>
  21. <preference name="auto-hide-splash-screen" value="true"/>
  22. <preference name="disable-cursor" value="false"/>
  23. <preference name="android-minSdkVersion" value="14"/>
  24. <preference name="android-installLocation" value="auto"/>
  25. <gap:plugin name="org.apache.cordova.battery-status"/>
  26. <gap:plugin name="org.apache.cordova.camera"/>
  27. <gap:plugin name="org.apache.cordova.media-capture"/>
  28. <gap:plugin name="org.apache.cordova.console"/>
  29. <gap:plugin name="org.apache.cordova.contacts"/>
  30. <gap:plugin name="org.apache.cordova.device"/>
  31. <gap:plugin name="org.apache.cordova.device-motion"/>
  32. <gap:plugin name="org.apache.cordova.device-orientation"/>
  33. <gap:plugin name="org.apache.cordova.dialogs"/>
  34. <gap:plugin name="org.apache.cordova.file"/>
  35. <gap:plugin name="org.apache.cordova.file-transfer"/>
  36. <gap:plugin name="org.apache.cordova.geolocation"/>
  37. <gap:plugin name="org.apache.cordova.globalization"/>
  38. <gap:plugin name="org.apache.cordova.inappbrowser"/>
  39. <gap:plugin name="org.apache.cordova.media"/>
  40. <gap:plugin name="org.apache.cordova.network-information"/>
  41. <gap:plugin name="org.apache.cordova.splashscreen"/>
  42. <gap:plugin name="org.apache.cordova.vibration"/>
  43.  
  44. <icon src="res/ios/icon.png" platform="ios" width="57" height="57" density="mdpi" />
  45.  
  46. <icon src="www/res/icon/android/icon-36-ldpi.png" gap:platform="android" gap:qualifier="ldpi"/>
  47. <icon src="www/res/icon/android/icon-48-mdpi.png" gap:platform="android" gap:qualifier="mdpi"/>
  48. <icon src="www/res/icon/android/icon-72-hdpi.png" gap:platform="android" gap:qualifier="hdpi"/>
  49. <icon src="www/res/icon/android/icon-96-xhdpi.png" gap:platform="android" gap:qualifier="xhdpi"/>
  50. <icon src="www/res/icon/blackberry/icon-80.png" gap:platform="blackberry"/>
  51. <icon src="www/res/icon/blackberry/icon-80.png" gap:platform="blackberry" gap:state="hover"/>
  52.  
  53.  
  54.  
  55. <icon src="res/ios/icon-57.png" gap:platform="ios" width="57" height="57"/>
  56. <icon src="res/ios/icon-72.png" gap:platform="ios" width="72" height="72"/>
  57. <icon src="res/ios/icon-57-2x.png" gap:platform="ios" width="114" height="114"/>
  58. <icon src="res/ios/icon-72-2x.png" gap:platform="ios" width="144" height="144"/>
  59.  
  60.  
  61. <platform name="ios">
  62. <!-- images are determined by width and height. The following are supported -->
  63. <splash src="Default-568h@2x~iphone.png" width="640" height="1136"/>
  64.  
  65. </platform>
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72. <icon src="www/res/icon/webos/icon-64.png" gap:platform="webos"/>
  73. <icon src="www/res/icon/windows-phone/icon-48.png" gap:platform="winphone"/>
  74. <icon src="www/res/icon/windows-phone/icon-173-tile.png" gap:platform="winphone" gap:role="background"/>
  75. <gap:splash src="www/res/screen/android/screen-ldpi-portrait.png" gap:platform="android" gap:qualifier="port-ldpi"/>
  76. <gap:splash src="www/res/screen/android/screen-mdpi-portrait.png" gap:platform="android" gap:qualifier="port-mdpi"/>
  77. <gap:splash src="www/res/screen/android/screen-hdpi-portrait.png" gap:platform="android" gap:qualifier="port-hdpi"/>
  78. <gap:splash src="www/res/screen/android/screen-xhdpi-portrait.png" gap:platform="android" gap:qualifier="port-xhdpi"/>
  79. <gap:splash src="www/res/screen/blackberry/screen-225.png" gap:platform="blackberry"/>
  80. <gap:splash src="www/res/screen/ios/screen-iphone-portrait.png" gap:platform="ios" width="320" height="480"/>
  81. <gap:splash src="www/res/screen/ios/screen-iphone-portrait-2x.png" gap:platform="ios" width="640" height="960"/>
  82. <gap:splash src="www/res/screen/ios/screen-iphone-portrait-568h-2x.png" gap:platform="ios" width="640" height="1136"/>
  83. <gap:splash src="www/res/screen/ios/screen-ipad-portrait.png" gap:platform="ios" width="768" height="1024"/>
  84. <gap:splash src="www/res/screen/ios/screen-ipad-landscape.png" gap:platform="ios" width="1024" height="768"/>
  85. <gap:splash src="www/res/screen/windows-phone/screen-portrait.jpg" gap:platform="winphone"/>
  86. <access origin="*"/>
  87. <plugin name="cordova-plugin-whitelist" version="1"/>
  88. <allow-intent href="http://*/*"/>
  89. <allow-intent href="https://*/*"/>
  90. <allow-intent href="tel:*"/>
  91. <allow-intent href="sms:*"/>
  92. <allow-intent href="mailto:*"/>
  93. <allow-intent href="geo:*"/>
  94. <platform name="android">
  95. <allow-intent href="market:*"/>
  96. </platform>
  97.  
  98.  
  99. <platform name="ios">
  100. <allow-intent href="itms:*"/>
  101. <allow-intent href="itms-apps:*"/>
  102.  
  103.  
  104.  
  105. <!-- iOS 8.0+ -->
  106. <!-- iPhone 6 Plus -->
  107. <icon src="res/ios/icon-60@3x.png" width="180" height="180" />
  108. <!-- iOS 7.0+ -->
  109. <!-- iPhone / iPod Touch -->
  110. <icon src="res/ios/icon-60.png" width="60" height="60" />
  111. <icon src="res/ios/icon-60@2x.png" width="120" height="120" />
  112. <!-- iPad -->
  113. <icon src="res/ios/icon-76.png" width="76" height="76" />
  114. <icon src="res/ios/icon-76@2x.png" width="152" height="152" />
  115. <!-- iOS 6.1 -->
  116. <!-- Spotlight Icon -->
  117. <icon src="res/ios/icon-40.png" width="40" height="40" />
  118. <icon src="res/ios/icon-40@2x.png" width="80" height="80" />
  119. <!-- iPhone / iPod Touch -->
  120. <icon src="res/ios/icon.png" width="57" height="57" />
  121. <icon src="res/ios/icon@2x.png" width="114" height="114" />
  122. <!-- iPad -->
  123. <icon src="res/ios/icon-72.png" width="72" height="72" />
  124. <icon src="res/ios/icon-72@2x.png" width="144" height="144" />
  125. <!-- iPhone Spotlight and Settings Icon -->
  126. <icon src="res/ios/icon-small.png" width="29" height="29" />
  127. <icon src="res/ios/icon-small@2x.png" width="58" height="58" />
  128. <!-- iPad Spotlight and Settings Icon -->
  129. <icon src="res/ios/icon-50.png" width="50" height="50" />
  130. <icon src="res/ios/icon-50@2x.png" width="100" height="100" />
  131.  
  132.  
  133.  
  134.  
  135.  
  136. <icon src="icon-128.png" width="128" height="128" />
  137. <icon src="icon-256.png" width="256" height="256" gap:role="default" />
  138.  
  139. <preference name="permissions" value="none"/>
  140. <preference name="android-targetSdkVersion" value="21" />
  141.  
  142. <feature name="http://api.phonegap.com/1.0/network"/>
  143.  
  144. <preference name="orientation" value="portrait" />
  145. <preference name="fullscreen" value="true" />
  146. <gap:config-file platform="ios" parent="UIStatusBarHidden"><true/></gap:config-file>
  147. <gap:config-file platform="ios" parent="UIViewControllerBasedStatusBarAppearance"><false/></gap:config-file>
  148.  
  149. <preference name="deployment-target" value="8.0" />
  150. <preference name="android-minSdkVersion" value="21" />
  151. <preference name="target-device" value="universal" />
  152.  
  153. <gap:plugin name="org.apache.cordova.inappbrowser" />
  154.  
  155. <!-- Optional splash screen image, e.g.: -->
  156. <!-- <gap:splash src="splash.png" width="1024" height="768" /> -->
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167. </platform>
  168.  
  169.  
  170.  
  171. </widget>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement