Merge branch 'master' of github.com:imhotep/incubator-cordova-android

This commit is contained in:
Anis Kadri 2012-01-23 16:21:11 -08:00
commit e8544d30d1
2 changed files with 24 additions and 1 deletions

View File

@ -19,6 +19,16 @@ Requires
- Apache ANT
- Android SDK [http://developer.android.com](http://developer.android.com)
Building
---
To create your phonegap.jar, run in the framework directory:
android update project -p . -t android-15
ant jar
Cordova Android Developer Tools
---

View File

@ -1,6 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<phonegap>
<access origin="http://127.0.0.1*"/>
<!--
access elements control the Android whitelist.
Domains are assumed blocked unless set otherwise
-->
<access origin="http://127.0.0.1*"/> <!-- allow local pages -->
<!-- <access origin="https://example.com" /> allow any secure requests to example.com -->
<!-- <access origin="https://example.com" subdomains="true" /> such as above, but including subdomains, such as www -->
<!-- <access origin=".*"/> Allow all domains, suggested development use only -->
<log level="DEBUG"/>
<render legacy="true" />
</phonegap>