Advertisement
Guest User

Untitled

a guest
Aug 12th, 2015
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <widget id="com.example.hello" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
  3. <name>HelloWorld</name>
  4. <description>
  5. A sample Apache Cordova application that responds to the deviceready event.
  6. </description>
  7. <author email="dev@cordova.apache.org" href="http://cordova.io">
  8. Apache Cordova Team
  9. </author>
  10. <content src="index.html" />
  11. <plugin name="cordova-plugin-whitelist" version="1" />
  12. <access origin="*" />
  13. <!-- edit zone -->
  14. <preference name="keepRunning" value="false" />
  15.  
  16. <content src="http://www.google.com/" />
  17.  
  18. <allow-navigation href="http://*/*" />
  19. <allow-navigation href="https://*/*" />
  20. <allow-navigation href="data:*" />
  21. <allow-navigation href="blob:*" />
  22.  
  23. <!-- edit zone -->
  24. <!--
  25. <allow-intent href="http://*/*" />
  26. <allow-intent href="https://*/*" />
  27. -->
  28.  
  29. <allow-intent href="tel:*" />
  30. <allow-intent href="sms:*" />
  31. <allow-intent href="mailto:*" />
  32. <allow-intent href="geo:*" />
  33. <platform name="android">
  34. <allow-intent href="market:*" />
  35. </platform>
  36. <platform name="ios">
  37. <allow-intent href="itms:*" />
  38. <allow-intent href="itms-apps:*" />
  39. </platform>
  40. </widget>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement