config.xml 975 B

1234567891011121314151617181920212223242526
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <widget id="me.yoqi.myapp" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
  3. <name>myApp</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" spec="1" />
  12. <access origin="*" />
  13. <allow-intent href="http://*/*" />
  14. <allow-intent href="https://*/*" />
  15. <allow-intent href="tel:*" />
  16. <allow-intent href="sms:*" />
  17. <allow-intent href="mailto:*" />
  18. <allow-intent href="geo:*" />
  19. <platform name="android">
  20. <allow-intent href="market:*" />
  21. </platform>
  22. <platform name="ios">
  23. <allow-intent href="itms:*" />
  24. <allow-intent href="itms-apps:*" />
  25. </platform>
  26. </widget>