diff options
author | Struan Donald <struan@exo.org.uk> | 2013-07-15 11:20:29 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-07-15 11:32:12 +0100 |
commit | 8246bcdcadcc3b494b0dc2eef8762a8333b6a661 (patch) | |
tree | 734d0ebfd7f73d1e77e02f03902a8c4906775c84 | |
parent | 25e3a0c94551b0faac3f16e0598e6f4bdffcf7d8 (diff) |
Android uses regexp rather than bash style globbing. Fixes #41
-rwxr-xr-x | Android/res/xml/config.xml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Android/res/xml/config.xml b/Android/res/xml/config.xml index 5621da4..6d343ef 100755 --- a/Android/res/xml/config.xml +++ b/Android/res/xml/config.xml @@ -30,13 +30,12 @@ Apache Cordova Team </author> - <access origin="*.tile.openstreetmap.org"/> - <access origin="*.tilma.mysociety.org"/> - <access origin="*.virtualearth.net"/> + <access origin=".*.tile.openstreetmap.org"/> + <access origin="tilma.mysociety.org"/> + <access origin=".*.tilma.mysociety.org"/> + <access origin=".*.virtualearth.net"/> <access origin="mapit.mysociety.org"/> <access origin="struan.fixmystreet.dev.mysociety.org"/> - <access origin="192.168.1.13"/> - <access origin="debug.phonegap.com"/> <!-- <content src="http://mysite.com/myapp.html" /> for external pages --> <content src="src/index.html" /> |