You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2013/01/22 02:57:57 UTC

[51/52] [partial] git commit: support for 2.4.0rc1. "vendored" the platform libs in. added Gord and Braden as contributors. removed dependency on unzip and axed the old download-cordova code.

support for 2.4.0rc1. "vendored" the platform libs in. added Gord and Braden as contributors. removed dependency on unzip and axed the old download-cordova code.


Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/d61deccd
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/d61deccd
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/d61deccd

Branch: refs/heads/master
Commit: d61deccd604fef049cd631b432d6727df23e1dde
Parents: 1a99d90
Author: Fil Maj <ma...@gmail.com>
Authored: Mon Jan 21 17:56:16 2013 -0800
Committer: Fil Maj <ma...@gmail.com>
Committed: Mon Jan 21 17:56:16 2013 -0800

----------------------------------------------------------------------
 .gitignore                                         |    1 -
 bootstrap.js                                       |   37 +-
 lib/cordova-android/LICENSE                        |  202 +
 lib/cordova-android/NOTICE                         |    5 +
 lib/cordova-android/README.md                      |  109 +
 lib/cordova-android/VERSION                        |    1 +
 lib/cordova-android/bin/create                     |  159 +
 lib/cordova-android/bin/create.bat                 |   32 +
 lib/cordova-android/bin/create.js                  |  214 +
 lib/cordova-android/bin/create.xml                 |   98 +
 lib/cordova-android/bin/package.json               |   22 +
 .../cordova/ApplicationInfo/ApplicationInfo.class  |  Bin 0 -> 2045 bytes
 .../cordova/ApplicationInfo/ApplicationInfo.java   |   61 +
 .../bin/templates/cordova/appinfo.jar              |  Bin 0 -> 1574 bytes
 lib/cordova-android/bin/templates/cordova/build    |   24 +
 .../bin/templates/cordova/build.bat                |   18 +
 lib/cordova-android/bin/templates/cordova/clean    |   24 +
 .../bin/templates/cordova/clean.bat                |   18 +
 lib/cordova-android/bin/templates/cordova/cordova  |  159 +
 .../bin/templates/cordova/cordova.bat              |   32 +
 .../bin/templates/cordova/cordova.js               |  137 +
 lib/cordova-android/bin/templates/cordova/log      |   24 +
 lib/cordova-android/bin/templates/cordova/log.bat  |   18 +
 lib/cordova-android/bin/templates/cordova/release  |   24 +
 lib/cordova-android/bin/templates/cordova/run      |   24 +
 lib/cordova-android/bin/templates/cordova/run.bat  |    1 +
 .../bin/templates/project/Activity.java            |   36 +
 .../bin/templates/project/AndroidManifest.xml      |   63 +
 .../bin/templates/project/assets/www/css/index.css |  115 +
 .../templates/project/assets/www/img/cordova.png   |  Bin 0 -> 19932 bytes
 .../bin/templates/project/assets/www/img/logo.png  |  Bin 0 -> 21814 bytes
 .../bin/templates/project/assets/www/index.html    |   42 +
 .../bin/templates/project/assets/www/js/index.js   |   49 +
 .../bin/templates/project/assets/www/main.js       |  165 +
 .../bin/templates/project/assets/www/master.css    |  116 +
 .../assets/www/res/icon/android/icon-36-ldpi.png   |  Bin 0 -> 3096 bytes
 .../assets/www/res/icon/android/icon-48-mdpi.png   |  Bin 0 -> 4090 bytes
 .../assets/www/res/icon/android/icon-72-hdpi.png   |  Bin 0 -> 6080 bytes
 .../assets/www/res/icon/android/icon-96-xhdpi.png  |  Bin 0 -> 7685 bytes
 .../res/screen/android/screen-hdpi-landscape.png   |  Bin 0 -> 218302 bytes
 .../res/screen/android/screen-hdpi-portrait.png    |  Bin 0 -> 222148 bytes
 .../res/screen/android/screen-ldpi-landscape.png   |  Bin 0 -> 42616 bytes
 .../res/screen/android/screen-ldpi-portrait.png    |  Bin 0 -> 42034 bytes
 .../res/screen/android/screen-mdpi-landscape.png   |  Bin 0 -> 92347 bytes
 .../res/screen/android/screen-mdpi-portrait.png    |  Bin 0 -> 90555 bytes
 .../res/screen/android/screen-xhdpi-landscape.png  |  Bin 0 -> 489604 bytes
 .../res/screen/android/screen-xhdpi-portrait.png   |  Bin 0 -> 504508 bytes
 .../bin/templates/project/assets/www/spec.html     |   68 +
 .../templates/project/assets/www/spec/helper.js    |   33 +
 .../bin/templates/project/assets/www/spec/index.js |   67 +
 .../assets/www/spec/lib/jasmine-1.2.0/MIT.LICENSE  |   20 +
 .../www/spec/lib/jasmine-1.2.0/jasmine-html.js     |  616 +
 .../assets/www/spec/lib/jasmine-1.2.0/jasmine.css  |   81 +
 .../assets/www/spec/lib/jasmine-1.2.0/jasmine.js   | 2529 ++++
 .../templates/project/res/drawable-hdpi/icon.png   |  Bin 0 -> 6080 bytes
 .../templates/project/res/drawable-ldpi/icon.png   |  Bin 0 -> 3096 bytes
 .../templates/project/res/drawable-mdpi/icon.png   |  Bin 0 -> 4090 bytes
 .../templates/project/res/drawable-xhdpi/icon.png  |  Bin 0 -> 7685 bytes
 .../bin/templates/project/res/drawable/icon.png    |  Bin 0 -> 7685 bytes
 lib/cordova-android/bin/tests/test_create_unix.js  |  152 +
 lib/cordova-android/bin/tests/test_create_win.js   |  155 +
 lib/cordova-android/framework/.classpath           |    9 +
 lib/cordova-android/framework/.project             |   33 +
 lib/cordova-android/framework/AndroidManifest.xml  |   68 +
 lib/cordova-android/framework/ant.properties       |   34 +
 .../framework/assets/js/cordova.android.js         | 6533 +++++++++
 .../framework/assets/www/index.html                |   27 +
 .../framework/bin/AndroidManifest.xml              |   68 +
 .../framework/bin/AndroidManifest.xml.d            |    2 +
 lib/cordova-android/framework/bin/R.txt            |    7 +
 lib/cordova-android/framework/bin/classes.jar      |  Bin 0 -> 238244 bytes
 .../org/apache/cordova/AccelListener$1.class       |  Bin 0 -> 657 bytes
 .../classes/org/apache/cordova/AccelListener.class |  Bin 0 -> 6017 bytes
 .../bin/classes/org/apache/cordova/App$1.class     |  Bin 0 -> 847 bytes
 .../bin/classes/org/apache/cordova/App$2.class     |  Bin 0 -> 691 bytes
 .../bin/classes/org/apache/cordova/App.class       |  Bin 0 -> 5386 bytes
 .../classes/org/apache/cordova/AudioHandler.class  |  Bin 0 -> 7436 bytes
 .../classes/org/apache/cordova/AudioPlayer$1.class |  Bin 0 -> 1408 bytes
 .../org/apache/cordova/AudioPlayer$MODE.class      |  Bin 0 -> 1148 bytes
 .../org/apache/cordova/AudioPlayer$STATE.class     |  Bin 0 -> 1370 bytes
 .../classes/org/apache/cordova/AudioPlayer.class   |  Bin 0 -> 11156 bytes
 .../org/apache/cordova/AuthenticationToken.class   |  Bin 0 -> 776 bytes
 .../org/apache/cordova/BatteryListener$1.class     |  Bin 0 -> 962 bytes
 .../org/apache/cordova/BatteryListener.class       |  Bin 0 -> 4335 bytes
 .../classes/org/apache/cordova/BuildConfig.class   |  Bin 0 -> 345 bytes
 .../org/apache/cordova/CameraLauncher.class        |  Bin 0 -> 16080 bytes
 .../bin/classes/org/apache/cordova/Capture.class   |  Bin 0 -> 11034 bytes
 .../org/apache/cordova/CompassListener$1.class     |  Bin 0 -> 749 bytes
 .../org/apache/cordova/CompassListener.class       |  Bin 0 -> 5935 bytes
 .../bin/classes/org/apache/cordova/Config.class    |  Bin 0 -> 6028 bytes
 .../cordova/ContactAccessor$WhereOptions.class     |  Bin 0 -> 1054 bytes
 .../org/apache/cordova/ContactAccessor.class       |  Bin 0 -> 3871 bytes
 .../org/apache/cordova/ContactAccessorSdk5.class   |  Bin 0 -> 34738 bytes
 .../org/apache/cordova/ContactManager$1.class      |  Bin 0 -> 1364 bytes
 .../org/apache/cordova/ContactManager$2.class      |  Bin 0 -> 1963 bytes
 .../org/apache/cordova/ContactManager$3.class      |  Bin 0 -> 1522 bytes
 .../org/apache/cordova/ContactManager.class        |  Bin 0 -> 3376 bytes
 .../classes/org/apache/cordova/CordovaArgs.class   |  Bin 0 -> 2561 bytes
 .../org/apache/cordova/CordovaChromeClient$1.class |  Bin 0 -> 1110 bytes
 .../org/apache/cordova/CordovaChromeClient$2.class |  Bin 0 -> 1089 bytes
 .../org/apache/cordova/CordovaChromeClient$3.class |  Bin 0 -> 1189 bytes
 .../org/apache/cordova/CordovaChromeClient$4.class |  Bin 0 -> 1112 bytes
 .../org/apache/cordova/CordovaChromeClient$5.class |  Bin 0 -> 1111 bytes
 .../org/apache/cordova/CordovaChromeClient$6.class |  Bin 0 -> 1091 bytes
 .../org/apache/cordova/CordovaChromeClient$7.class |  Bin 0 -> 1190 bytes
 .../org/apache/cordova/CordovaChromeClient$8.class |  Bin 0 -> 1441 bytes
 .../org/apache/cordova/CordovaChromeClient$9.class |  Bin 0 -> 1149 bytes
 .../org/apache/cordova/CordovaChromeClient.class   |  Bin 0 -> 11583 bytes
 .../apache/cordova/CordovaLocationListener.class   |  Bin 0 -> 5624 bytes
 .../org/apache/cordova/CordovaWebView$1.class      |  Bin 0 -> 803 bytes
 .../org/apache/cordova/CordovaWebView$2.class      |  Bin 0 -> 1285 bytes
 .../org/apache/cordova/CordovaWebView$3.class      |  Bin 0 -> 1476 bytes
 .../org/apache/cordova/CordovaWebView$4.class      |  Bin 0 -> 1060 bytes
 .../cordova/CordovaWebView$ActivityResult.class    |  Bin 0 -> 757 bytes
 .../cordova/CordovaWebView$Level16Apis.class       |  Bin 0 -> 759 bytes
 .../org/apache/cordova/CordovaWebView.class        |  Bin 0 -> 21714 bytes
 .../apache/cordova/CordovaWebViewClient$1$1.class  |  Bin 0 -> 984 bytes
 .../apache/cordova/CordovaWebViewClient$1.class    |  Bin 0 -> 1268 bytes
 .../org/apache/cordova/CordovaWebViewClient.class  |  Bin 0 -> 10433 bytes
 .../bin/classes/org/apache/cordova/Device$1.class  |  Bin 0 -> 1773 bytes
 .../bin/classes/org/apache/cordova/Device.class    |  Bin 0 -> 3995 bytes
 .../org/apache/cordova/DirectoryManager.class      |  Bin 0 -> 2559 bytes
 .../classes/org/apache/cordova/DroidGap$1.class    |  Bin 0 -> 959 bytes
 .../classes/org/apache/cordova/DroidGap$2.class    |  Bin 0 -> 1000 bytes
 .../classes/org/apache/cordova/DroidGap$3.class    |  Bin 0 -> 1367 bytes
 .../classes/org/apache/cordova/DroidGap$4$1.class  |  Bin 0 -> 1007 bytes
 .../classes/org/apache/cordova/DroidGap$4.class    |  Bin 0 -> 1908 bytes
 .../classes/org/apache/cordova/DroidGap$5$1.class  |  Bin 0 -> 726 bytes
 .../classes/org/apache/cordova/DroidGap$5.class    |  Bin 0 -> 2603 bytes
 .../bin/classes/org/apache/cordova/DroidGap.class  |  Bin 0 -> 18792 bytes
 .../bin/classes/org/apache/cordova/Echo$1.class    |  Bin 0 -> 967 bytes
 .../bin/classes/org/apache/cordova/Echo.class      |  Bin 0 -> 1660 bytes
 .../classes/org/apache/cordova/ExifHelper.class    |  Bin 0 -> 3381 bytes
 .../classes/org/apache/cordova/ExposedJsApi.class  |  Bin 0 -> 1635 bytes
 .../org/apache/cordova/FileProgressResult.class    |  Bin 0 -> 1531 bytes
 .../org/apache/cordova/FileTransfer$1.class        |  Bin 0 -> 11325 bytes
 .../org/apache/cordova/FileTransfer$2.class        |  Bin 0 -> 648 bytes
 .../org/apache/cordova/FileTransfer$3.class        |  Bin 0 -> 1019 bytes
 .../org/apache/cordova/FileTransfer$4.class        |  Bin 0 -> 7265 bytes
 .../org/apache/cordova/FileTransfer$5.class        |  Bin 0 -> 1077 bytes
 .../FileTransfer$DoneHandlerInputStream.class      |  Bin 0 -> 1091 bytes
 .../cordova/FileTransfer$RequestContext.class      |  Bin 0 -> 1150 bytes
 .../classes/org/apache/cordova/FileTransfer.class  |  Bin 0 -> 12506 bytes
 .../org/apache/cordova/FileUploadResult.class      |  Bin 0 -> 1847 bytes
 .../bin/classes/org/apache/cordova/FileUtils.class |  Bin 0 -> 20786 bytes
 .../classes/org/apache/cordova/GPSListener.class   |  Bin 0 -> 1145 bytes
 .../bin/classes/org/apache/cordova/GeoBroker.class |  Bin 0 -> 6359 bytes
 .../org/apache/cordova/Globalization$1.class       |  Bin 0 -> 1296 bytes
 .../classes/org/apache/cordova/Globalization.class |  Bin 0 -> 12613 bytes
 .../org/apache/cordova/GlobalizationError.class    |  Bin 0 -> 1615 bytes
 .../classes/org/apache/cordova/HttpHandler.class   |  Bin 0 -> 2498 bytes
 .../cordova/IceCreamCordovaWebViewClient.class     |  Bin 0 -> 2743 bytes
 .../org/apache/cordova/InAppBrowser$1$1.class      |  Bin 0 -> 1430 bytes
 .../org/apache/cordova/InAppBrowser$1$2.class      |  Bin 0 -> 924 bytes
 .../org/apache/cordova/InAppBrowser$1$3.class      |  Bin 0 -> 924 bytes
 .../org/apache/cordova/InAppBrowser$1$4.class      |  Bin 0 -> 1330 bytes
 .../org/apache/cordova/InAppBrowser$1$5.class      |  Bin 0 -> 924 bytes
 .../org/apache/cordova/InAppBrowser$1.class        |  Bin 0 -> 7614 bytes
 .../cordova/InAppBrowser$InAppBrowserClient.class  |  Bin 0 -> 2483 bytes
 .../classes/org/apache/cordova/InAppBrowser.class  |  Bin 0 -> 9632 bytes
 .../cordova/LinearLayoutSoftKeyboardDetect.class   |  Bin 0 -> 2200 bytes
 .../apache/cordova/NativeToJsMessageQueue$1.class  |  Bin 0 -> 255 bytes
 .../NativeToJsMessageQueue$BridgeMode.class        |  Bin 0 -> 291 bytes
 .../cordova/NativeToJsMessageQueue$JsMessage.class |  Bin 0 -> 2867 bytes
 ...ativeToJsMessageQueue$LoadUrlBridgeMode$1.class |  Bin 0 -> 1426 bytes
 .../NativeToJsMessageQueue$LoadUrlBridgeMode.class |  Bin 0 -> 1592 bytes
 ...ToJsMessageQueue$OnlineEventsBridgeMode$1.class |  Bin 0 -> 1340 bytes
 ...veToJsMessageQueue$OnlineEventsBridgeMode.class |  Bin 0 -> 1556 bytes
 ...tiveToJsMessageQueue$PrivateApiBridgeMode.class |  Bin 0 -> 3053 bytes
 .../apache/cordova/NativeToJsMessageQueue.class    |  Bin 0 -> 7513 bytes
 .../org/apache/cordova/NetworkListener.class       |  Bin 0 -> 637 bytes
 .../org/apache/cordova/NetworkManager$1.class      |  Bin 0 -> 1194 bytes
 .../org/apache/cordova/NetworkManager.class        |  Bin 0 -> 5964 bytes
 .../org/apache/cordova/Notification$1$1.class      |  Bin 0 -> 1315 bytes
 .../org/apache/cordova/Notification$1$2.class      |  Bin 0 -> 1295 bytes
 .../org/apache/cordova/Notification$1.class        |  Bin 0 -> 2387 bytes
 .../org/apache/cordova/Notification$2$1.class      |  Bin 0 -> 1315 bytes
 .../org/apache/cordova/Notification$2$2.class      |  Bin 0 -> 1315 bytes
 .../org/apache/cordova/Notification$2$3.class      |  Bin 0 -> 1315 bytes
 .../org/apache/cordova/Notification$2$4.class      |  Bin 0 -> 1295 bytes
 .../org/apache/cordova/Notification$2.class        |  Bin 0 -> 2662 bytes
 .../org/apache/cordova/Notification$3$1.class      |  Bin 0 -> 984 bytes
 .../org/apache/cordova/Notification$3.class        |  Bin 0 -> 1532 bytes
 .../org/apache/cordova/Notification$4$1.class      |  Bin 0 -> 995 bytes
 .../org/apache/cordova/Notification$4.class        |  Bin 0 -> 1885 bytes
 .../classes/org/apache/cordova/Notification.class  |  Bin 0 -> 5230 bytes
 .../bin/classes/org/apache/cordova/R$attr.class    |  Bin 0 -> 340 bytes
 .../classes/org/apache/cordova/R$drawable.class    |  Bin 0 -> 482 bytes
 .../bin/classes/org/apache/cordova/R$id.class      |  Bin 0 -> 426 bytes
 .../bin/classes/org/apache/cordova/R$layout.class  |  Bin 0 -> 435 bytes
 .../bin/classes/org/apache/cordova/R$string.class  |  Bin 0 -> 476 bytes
 .../bin/classes/org/apache/cordova/R$xml.class     |  Bin 0 -> 428 bytes
 .../bin/classes/org/apache/cordova/R.class         |  Bin 0 -> 579 bytes
 .../classes/org/apache/cordova/SplashScreen.class  |  Bin 0 -> 1028 bytes
 .../classes/org/apache/cordova/StandAlone.class    |  Bin 0 -> 565 bytes
 .../bin/classes/org/apache/cordova/Storage.class   |  Bin 0 -> 5657 bytes
 .../org/apache/cordova/api/CallbackContext.class   |  Bin 0 -> 3186 bytes
 .../org/apache/cordova/api/CordovaInterface.class  |  Bin 0 -> 513 bytes
 .../org/apache/cordova/api/CordovaPlugin.class     |  Bin 0 -> 2810 bytes
 .../bin/classes/org/apache/cordova/api/LOG.class   |  Bin 0 -> 3256 bytes
 .../org/apache/cordova/api/LegacyContext.class     |  Bin 0 -> 5765 bytes
 .../classes/org/apache/cordova/api/Plugin$1.class  |  Bin 0 -> 1582 bytes
 .../classes/org/apache/cordova/api/Plugin.class    |  Bin 0 -> 3983 bytes
 .../org/apache/cordova/api/PluginEntry.class       |  Bin 0 -> 2163 bytes
 .../org/apache/cordova/api/PluginManager.class     |  Bin 0 -> 9171 bytes
 .../apache/cordova/api/PluginResult$Status.class   |  Bin 0 -> 1685 bytes
 .../org/apache/cordova/api/PluginResult.class      |  Bin 0 -> 4751 bytes
 .../apache/cordova/file/EncodingException.class    |  Bin 0 -> 391 bytes
 .../apache/cordova/file/FileExistsException.class  |  Bin 0 -> 393 bytes
 .../file/InvalidModificationException.class        |  Bin 0 -> 424 bytes
 .../file/NoModificationAllowedException.class      |  Bin 0 -> 430 bytes
 .../cordova/file/TypeMismatchException.class       |  Bin 0 -> 403 bytes
 lib/cordova-android/framework/bin/jarlist.cache    |    3 +
 lib/cordova-android/framework/bin/proguard.txt     |    6 +
 lib/cordova-android/framework/build.xml            |  204 +
 lib/cordova-android/framework/default.properties   |   14 +
 lib/cordova-android/framework/gen/R.java.d         |    9 +
 .../gen/org/apache/cordova/BuildConfig.java        |    6 +
 .../framework/gen/org/apache/cordova/R.java        |   30 +
 .../framework/libs/commons-codec-1.7.jar           |  Bin 0 -> 259600 bytes
 lib/cordova-android/framework/local.properties     |   10 +
 lib/cordova-android/framework/proguard-project.txt |   20 +
 lib/cordova-android/framework/project.properties   |   16 +
 .../framework/res/drawable-hdpi/icon.png           |  Bin 0 -> 6080 bytes
 .../framework/res/drawable-ldpi/icon.png           |  Bin 0 -> 3096 bytes
 .../framework/res/drawable-mdpi/icon.png           |  Bin 0 -> 4090 bytes
 .../framework/res/drawable/splash.png              |  Bin 0 -> 93962 bytes
 lib/cordova-android/framework/res/layout/main.xml  |   29 +
 .../framework/res/values/strings.xml               |   23 +
 lib/cordova-android/framework/res/xml/config.xml   |   60 +
 .../src/org/apache/cordova/AccelListener.java      |  285 +
 .../framework/src/org/apache/cordova/App.java      |  221 +
 .../src/org/apache/cordova/AudioHandler.java       |  357 +
 .../src/org/apache/cordova/AudioPlayer.java        |  548 +
 .../org/apache/cordova/AuthenticationToken.java    |   69 +
 .../src/org/apache/cordova/BatteryListener.java    |  163 +
 .../src/org/apache/cordova/CameraLauncher.java     |  786 ++
 .../framework/src/org/apache/cordova/Capture.java  |  443 +
 .../src/org/apache/cordova/CompassListener.java    |  295 +
 .../framework/src/org/apache/cordova/Config.java   |  228 +
 .../src/org/apache/cordova/ContactAccessor.java    |  199 +
 .../org/apache/cordova/ContactAccessorSdk5.java    | 2175 +++
 .../src/org/apache/cordova/ContactManager.java     |  122 +
 .../src/org/apache/cordova/CordovaArgs.java        |  112 +
 .../org/apache/cordova/CordovaChromeClient.java    |  404 +
 .../apache/cordova/CordovaLocationListener.java    |  207 +
 .../src/org/apache/cordova/CordovaWebView.java     |  985 ++
 .../org/apache/cordova/CordovaWebViewClient.java   |  481 +
 .../framework/src/org/apache/cordova/Device.java   |  201 +
 .../src/org/apache/cordova/DirectoryManager.java   |  161 +
 .../framework/src/org/apache/cordova/DroidGap.java | 1137 ++
 .../framework/src/org/apache/cordova/Echo.java     |   48 +
 .../src/org/apache/cordova/ExifHelper.java         |  185 +
 .../src/org/apache/cordova/ExposedJsApi.java       |   65 +
 .../src/org/apache/cordova/FileProgressResult.java |   63 +
 .../src/org/apache/cordova/FileTransfer.java       |  827 ++
 .../src/org/apache/cordova/FileUploadResult.java   |   73 +
 .../src/org/apache/cordova/FileUtils.java          | 1141 ++
 .../src/org/apache/cordova/GPSListener.java        |   50 +
 .../src/org/apache/cordova/GeoBroker.java          |  204 +
 .../src/org/apache/cordova/Globalization.java      |  577 +
 .../src/org/apache/cordova/GlobalizationError.java |  108 +
 .../src/org/apache/cordova/HttpHandler.java        |   86 +
 .../cordova/IceCreamCordovaWebViewClient.java      |   83 +
 .../src/org/apache/cordova/InAppBrowser.java       |  534 +
 .../cordova/LinearLayoutSoftKeyboardDetect.java    |  105 +
 .../org/apache/cordova/NativeToJsMessageQueue.java |  484 +
 .../src/org/apache/cordova/NetworkListener.java    |   32 +
 .../src/org/apache/cordova/NetworkManager.java     |  248 +
 .../src/org/apache/cordova/Notification.java       |  341 +
 .../src/org/apache/cordova/SplashScreen.java       |   43 +
 .../src/org/apache/cordova/StandAlone.java         |   32 +
 .../framework/src/org/apache/cordova/Storage.java  |  245 +
 .../org/apache/cordova/api/CallbackContext.java    |  120 +
 .../org/apache/cordova/api/CordovaInterface.java   |   71 +
 .../src/org/apache/cordova/api/CordovaPlugin.java  |  171 +
 .../framework/src/org/apache/cordova/api/LOG.java  |  234 +
 .../src/org/apache/cordova/api/LegacyContext.java  |  154 +
 .../src/org/apache/cordova/api/Plugin.java         |  177 +
 .../src/org/apache/cordova/api/PluginEntry.java    |  117 +
 .../src/org/apache/cordova/api/PluginManager.java  |  393 +
 .../src/org/apache/cordova/api/PluginResult.java   |  172 +
 .../org/apache/cordova/file/EncodingException.java |   28 +
 .../apache/cordova/file/FileExistsException.java   |   28 +
 .../cordova/file/InvalidModificationException.java |   29 +
 .../file/NoModificationAllowedException.java       |   28 +
 .../apache/cordova/file/TypeMismatchException.java |   29 +
 .../org/apache/cordova/PreferenceNodeTest.java     |   53 +
 .../test/org/apache/cordova/PreferenceSetTest.java |   73 +
 lib/cordova-android/test/.classpath                |    8 +
 lib/cordova-android/test/.project                  |   33 +
 lib/cordova-android/test/AndroidManifest.xml       |  269 +
 lib/cordova-android/test/README.md                 |   30 +
 lib/cordova-android/test/ant.properties            |   17 +
 .../test/assets/www/backbuttonmultipage/index.html |   41 +
 .../assets/www/backbuttonmultipage/sample2.html    |   41 +
 .../assets/www/backbuttonmultipage/sample3.html    |   43 +
 .../test/assets/www/background/index.html          |  117 +
 .../test/assets/www/background/index2.html         |  116 +
 .../test/assets/www/backgroundcolor/index.html     |   41 +
 .../test/assets/www/basicauth/index.html           |   42 +
 .../test/assets/www/cordova.android.js             | 6459 +++++++++
 lib/cordova-android/test/assets/www/cordova.js     |   21 +
 .../test/assets/www/fullscreen/index.html          |   42 +
 .../test/assets/www/htmlnotfound/error.html        |   19 +
 .../test/assets/www/iframe/index.html              |   51 +
 .../test/assets/www/iframe/index2.html             |   42 +
 lib/cordova-android/test/assets/www/index.html     |   68 +
 .../test/assets/www/jqmtabbackbutton/index.html    |   67 +
 .../test/assets/www/jqmtabbackbutton/tab1.html     |   47 +
 .../test/assets/www/jqmtabbackbutton/tab2.html     |   48 +
 .../test/assets/www/jqmtabbackbutton/tab3.html     |   48 +
 .../test/assets/www/lifecycle/index.html           |  126 +
 .../test/assets/www/lifecycle/index2.html          |  122 +
 lib/cordova-android/test/assets/www/main.js        |  169 +
 lib/cordova-android/test/assets/www/master.css     |  136 +
 .../test/assets/www/menus/index.html               |   47 +
 .../test/assets/www/splashscreen/index.html        |   40 +
 .../test/assets/www/userwebview/index.html         |   67 +
 .../test/assets/www/whitelist/index.html           |   47 +
 .../test/assets/www/whitelist/index2.html          |   41 +
 lib/cordova-android/test/assets/www/xhr/index.html |   66 +
 lib/cordova-android/test/build.xml                 |  103 +
 lib/cordova-android/test/proguard.cfg              |   40 +
 lib/cordova-android/test/project.properties        |   12 +
 .../test/res/drawable-hdpi/ic_launcher.png         |  Bin 0 -> 6080 bytes
 .../test/res/drawable-ldpi/ic_launcher.png         |  Bin 0 -> 3096 bytes
 .../test/res/drawable-mdpi/ic_launcher.png         |  Bin 0 -> 4090 bytes
 lib/cordova-android/test/res/drawable/icon.png     |  Bin 0 -> 5800 bytes
 lib/cordova-android/test/res/drawable/sandy.jpg    |  Bin 0 -> 48450 bytes
 lib/cordova-android/test/res/layout/main.xml       |   31 +
 lib/cordova-android/test/res/values/strings.xml    |    4 +
 lib/cordova-android/test/res/xml/config.xml        |   56 +
 lib/cordova-android/test/res/xml/cordova.xml       |   37 +
 lib/cordova-android/test/res/xml/plugins.xml       |   39 +
 .../org/apache/cordova/test/ActivityPlugin.java    |   81 +
 .../cordova/test/BackButtonMultiPageTest.java      |  158 +
 .../apache/cordova/test/CordovaActivityTest.java   |   90 +
 .../src/org/apache/cordova/test/CordovaTest.java   |  115 +
 .../src/org/apache/cordova/test/ErrorUrlTest.java  |   76 +
 .../src/org/apache/cordova/test/FixWebView.java    |   43 +
 .../src/org/apache/cordova/test/GapClientTest.java |   68 +
 .../org/apache/cordova/test/HtmlNotFoundTest.java  |   74 +
 .../src/org/apache/cordova/test/IFrameTest.java    |   34 +
 .../src/org/apache/cordova/test/JQMTabTest.java    |   35 +
 .../src/org/apache/cordova/test/LifecycleTest.java |   34 +
 .../org/apache/cordova/test/PluginManagerTest.java |   70 +
 .../org/apache/cordova/test/SplashscreenTest.java  |   49 +
 .../org/apache/cordova/test/UserWebViewTest.java   |   76 +
 .../test/src/org/apache/cordova/test/XhrTest.java  |   34 +
 .../cordova/test/actions/CordovaActivity.java      |   33 +
 .../cordova/test/actions/CordovaDriverAction.java  |   78 +
 .../test/actions/CordovaWebViewTestActivity.java   |  104 +
 .../cordova/test/actions/backbuttonmultipage.java  |   30 +
 .../apache/cordova/test/actions/background.java    |   33 +
 .../org/apache/cordova/test/actions/basicauth.java |   44 +
 .../org/apache/cordova/test/actions/errorurl.java  |   34 +
 .../apache/cordova/test/actions/fullscreen.java    |   39 +
 .../apache/cordova/test/actions/htmlnotfound.java  |   31 +
 .../org/apache/cordova/test/actions/iframe.java    |   30 +
 .../cordova/test/actions/jqmtabbackbutton.java     |   30 +
 .../org/apache/cordova/test/actions/lifecycle.java |   30 +
 .../org/apache/cordova/test/actions/loading.java   |   31 +
 .../src/org/apache/cordova/test/actions/menus.java |   80 +
 .../apache/cordova/test/actions/splashscreen.java  |   37 +
 .../src/org/apache/cordova/test/actions/tests.java |   32 +
 .../org/apache/cordova/test/actions/timeout.java   |   34 +
 .../apache/cordova/test/actions/userwebview.java   |   78 +
 .../org/apache/cordova/test/actions/whitelist.java |   51 +
 .../src/org/apache/cordova/test/actions/xhr.java   |   30 +
 .../org/apache/cordova/test/backgroundcolor.java   |   40 +
 lib/cordova-blackberry/LICENSE                     |  268 +
 lib/cordova-blackberry/NOTICE                      |    8 +
 lib/cordova-blackberry/README.md                   |  183 +
 lib/cordova-blackberry/VERSION                     |    1 +
 lib/cordova-blackberry/bin/create                  |   91 +
 lib/cordova-blackberry/bin/create.bat              |   33 +
 lib/cordova-blackberry/bin/create.js               |  125 +
 .../bin/templates/dist/README.md                   |   90 +
 .../bin/templates/project/blackberry.xml           |  456 +
 .../bin/templates/project/build.xml                |  160 +
 .../bin/templates/project/cordova/build            |   34 +
 .../bin/templates/project/cordova/run              |   41 +
 .../bin/templates/project/playbook.xml             |  338 +
 .../bin/templates/project/project.properties       |  137 +
 .../bin/templates/project/qnx.xml                  |  336 +
 .../bin/templates/project/www/LICENSE              |  296 +
 .../bin/templates/project/www/NOTICE               |    8 +
 .../bin/templates/project/www/README.md            |   30 +
 .../bin/templates/project/www/VERSION              |    1 +
 .../bin/templates/project/www/config.xml           |   96 +
 .../bin/templates/project/www/css/index.css        |  115 +
 .../bin/templates/project/www/img/logo.png         |  Bin 0 -> 21814 bytes
 .../bin/templates/project/www/index.html           |   42 +
 .../bin/templates/project/www/js/index.js          |   49 +
 .../bin/templates/project/www/json2.js             |  482 +
 .../bin/templates/project/www/plugins.xml          |   35 +
 .../project/www/res/icon/blackberry/icon-80.png    |  Bin 0 -> 7287 bytes
 .../project/www/res/resourceBundles/ar.js.gz       |  Bin 0 -> 708 bytes
 .../project/www/res/resourceBundles/ar_AE.js.gz    |  Bin 0 -> 745 bytes
 .../project/www/res/resourceBundles/ar_BH.js.gz    |  Bin 0 -> 738 bytes
 .../project/www/res/resourceBundles/ar_DZ.js.gz    |  Bin 0 -> 737 bytes
 .../project/www/res/resourceBundles/ar_EG.js.gz    |  Bin 0 -> 735 bytes
 .../project/www/res/resourceBundles/ar_IQ.js.gz    |  Bin 0 -> 736 bytes
 .../project/www/res/resourceBundles/ar_JO.js.gz    |  Bin 0 -> 736 bytes
 .../project/www/res/resourceBundles/ar_KW.js.gz    |  Bin 0 -> 738 bytes
 .../project/www/res/resourceBundles/ar_LB.js.gz    |  Bin 0 -> 735 bytes
 .../project/www/res/resourceBundles/ar_LY.js.gz    |  Bin 0 -> 736 bytes
 .../project/www/res/resourceBundles/ar_MA.js.gz    |  Bin 0 -> 738 bytes
 .../project/www/res/resourceBundles/ar_OM.js.gz    |  Bin 0 -> 736 bytes
 .../project/www/res/resourceBundles/ar_QA.js.gz    |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/ar_SA.js.gz    |  Bin 0 -> 704 bytes
 .../project/www/res/resourceBundles/ar_SD.js.gz    |  Bin 0 -> 737 bytes
 .../project/www/res/resourceBundles/ar_SY.js.gz    |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/ar_TN.js.gz    |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/ar_YE.js.gz    |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/be.js.gz       |  Bin 0 -> 703 bytes
 .../project/www/res/resourceBundles/be_BY.js.gz    |  Bin 0 -> 686 bytes
 .../project/www/res/resourceBundles/bg.js.gz       |  Bin 0 -> 702 bytes
 .../project/www/res/resourceBundles/bg_BG.js.gz    |  Bin 0 -> 688 bytes
 .../project/www/res/resourceBundles/bn_IN.js.gz    |  Bin 0 -> 767 bytes
 .../project/www/res/resourceBundles/ca.js.gz       |  Bin 0 -> 698 bytes
 .../project/www/res/resourceBundles/ca_ES.js.gz    |  Bin 0 -> 678 bytes
 .../www/res/resourceBundles/ca_ES_PREEURO.js.gz    |  Bin 0 -> 696 bytes
 .../project/www/res/resourceBundles/cs.js.gz       |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/cs_CZ.js.gz    |  Bin 0 -> 687 bytes
 .../www/res/resourceBundles/cs_CZ_EURO.js.gz       |  Bin 0 -> 702 bytes
 .../www/res/resourceBundles/cs_CZ_PREEURO.js.gz    |  Bin 0 -> 706 bytes
 .../project/www/res/resourceBundles/da.js.gz       |  Bin 0 -> 698 bytes
 .../project/www/res/resourceBundles/da_DK.js.gz    |  Bin 0 -> 717 bytes
 .../www/res/resourceBundles/da_DK_EURO.js.gz       |  Bin 0 -> 731 bytes
 .../project/www/res/resourceBundles/de.js.gz       |  Bin 0 -> 697 bytes
 .../project/www/res/resourceBundles/de_AT.js.gz    |  Bin 0 -> 719 bytes
 .../www/res/resourceBundles/de_AT_PREEURO.js.gz    |  Bin 0 -> 737 bytes
 .../project/www/res/resourceBundles/de_CH.js.gz    |  Bin 0 -> 723 bytes
 .../project/www/res/resourceBundles/de_DE.js.gz    |  Bin 0 -> 678 bytes
 .../www/res/resourceBundles/de_DE_PREEURO.js.gz    |  Bin 0 -> 696 bytes
 .../project/www/res/resourceBundles/de_LU.js.gz    |  Bin 0 -> 682 bytes
 .../www/res/resourceBundles/de_LU_PREEURO.js.gz    |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/el.js.gz       |  Bin 0 -> 696 bytes
 .../project/www/res/resourceBundles/el_CY.js.gz    |  Bin 0 -> 712 bytes
 .../www/res/resourceBundles/el_CY_EURO.js.gz       |  Bin 0 -> 726 bytes
 .../www/res/resourceBundles/el_CY_PREEURO.js.gz    |  Bin 0 -> 730 bytes
 .../project/www/res/resourceBundles/el_GR.js.gz    |  Bin 0 -> 690 bytes
 .../www/res/resourceBundles/el_GR_PREEURO.js.gz    |  Bin 0 -> 708 bytes
 .../project/www/res/resourceBundles/en.js.gz       |  Bin 0 -> 670 bytes
 .../project/www/res/resourceBundles/en_AU.js.gz    |  Bin 0 -> 689 bytes
 .../project/www/res/resourceBundles/en_BE.js.gz    |  Bin 0 -> 680 bytes
 .../www/res/resourceBundles/en_BE_PREEURO.js.gz    |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/en_CA.js.gz    |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/en_GB.js.gz    |  Bin 0 -> 692 bytes
 .../www/res/resourceBundles/en_GB_EURO.js.gz       |  Bin 0 -> 706 bytes
 .../project/www/res/resourceBundles/en_HK.js.gz    |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/en_IE.js.gz    |  Bin 0 -> 692 bytes
 .../www/res/resourceBundles/en_IE_PREEURO.js.gz    |  Bin 0 -> 710 bytes
 .../project/www/res/resourceBundles/en_IN.js.gz    |  Bin 0 -> 762 bytes
 .../project/www/res/resourceBundles/en_MT.js.gz    |  Bin 0 -> 686 bytes
 .../project/www/res/resourceBundles/en_NZ.js.gz    |  Bin 0 -> 691 bytes
 .../project/www/res/resourceBundles/en_PH.js.gz    |  Bin 0 -> 703 bytes
 .../project/www/res/resourceBundles/en_SG.js.gz    |  Bin 0 -> 688 bytes
 .../project/www/res/resourceBundles/en_US.js.gz    |  Bin 0 -> 705 bytes
 .../project/www/res/resourceBundles/en_ZA.js.gz    |  Bin 0 -> 692 bytes
 .../project/www/res/resourceBundles/es.js.gz       |  Bin 0 -> 681 bytes
 .../project/www/res/resourceBundles/es_AR.js.gz    |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/es_BO.js.gz    |  Bin 0 -> 697 bytes
 .../project/www/res/resourceBundles/es_CL.js.gz    |  Bin 0 -> 696 bytes
 .../project/www/res/resourceBundles/es_CO.js.gz    |  Bin 0 -> 698 bytes
 .../project/www/res/resourceBundles/es_CR.js.gz    |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/es_DO.js.gz    |  Bin 0 -> 708 bytes
 .../project/www/res/resourceBundles/es_EC.js.gz    |  Bin 0 -> 697 bytes
 .../project/www/res/resourceBundles/es_ES.js.gz    |  Bin 0 -> 679 bytes
 .../www/res/resourceBundles/es_ES_PREEURO.js.gz    |  Bin 0 -> 697 bytes
 .../project/www/res/resourceBundles/es_GT.js.gz    |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/es_HN.js.gz    |  Bin 0 -> 698 bytes
 .../project/www/res/resourceBundles/es_MX.js.gz    |  Bin 0 -> 697 bytes
 .../project/www/res/resourceBundles/es_NI.js.gz    |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/es_PA.js.gz    |  Bin 0 -> 697 bytes
 .../project/www/res/resourceBundles/es_PE.js.gz    |  Bin 0 -> 695 bytes
 .../project/www/res/resourceBundles/es_PR.js.gz    |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/es_PY.js.gz    |  Bin 0 -> 720 bytes
 .../project/www/res/resourceBundles/es_SV.js.gz    |  Bin 0 -> 702 bytes
 .../project/www/res/resourceBundles/es_US.js.gz    |  Bin 0 -> 707 bytes
 .../project/www/res/resourceBundles/es_UY.js.gz    |  Bin 0 -> 721 bytes
 .../project/www/res/resourceBundles/es_VE.js.gz    |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/et.js.gz       |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/et_EE.js.gz    |  Bin 0 -> 677 bytes
 .../www/res/resourceBundles/et_EE_EURO.js.gz       |  Bin 0 -> 691 bytes
 .../www/res/resourceBundles/et_EE_PREEURO.js.gz    |  Bin 0 -> 695 bytes
 .../project/www/res/resourceBundles/fi.js.gz       |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/fi_FI.js.gz    |  Bin 0 -> 685 bytes
 .../www/res/resourceBundles/fi_FI_PREEURO.js.gz    |  Bin 0 -> 702 bytes
 .../project/www/res/resourceBundles/fr.js.gz       |  Bin 0 -> 661 bytes
 .../project/www/res/resourceBundles/fr_BE.js.gz    |  Bin 0 -> 679 bytes
 .../www/res/resourceBundles/fr_BE_PREEURO.js.gz    |  Bin 0 -> 698 bytes
 .../project/www/res/resourceBundles/fr_CA.js.gz    |  Bin 0 -> 696 bytes
 .../project/www/res/resourceBundles/fr_CH.js.gz    |  Bin 0 -> 723 bytes
 .../project/www/res/resourceBundles/fr_FR.js.gz    |  Bin 0 -> 682 bytes
 .../www/res/resourceBundles/fr_FR_PREEURO.js.gz    |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/fr_LU.js.gz    |  Bin 0 -> 682 bytes
 .../www/res/resourceBundles/fr_LU_PREEURO.js.gz    |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/ga.js.gz       |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/ga_IE.js.gz    |  Bin 0 -> 691 bytes
 .../project/www/res/resourceBundles/gu.js.gz       |  Bin 0 -> 702 bytes
 .../project/www/res/resourceBundles/gu_IN.js.gz    |  Bin 0 -> 763 bytes
 .../project/www/res/resourceBundles/hi_IN.js.gz    |  Bin 0 -> 759 bytes
 .../project/www/res/resourceBundles/hr.js.gz       |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/hr_HR.js.gz    |  Bin 0 -> 712 bytes
 .../project/www/res/resourceBundles/hu.js.gz       |  Bin 0 -> 702 bytes
 .../project/www/res/resourceBundles/hu_HU.js.gz    |  Bin 0 -> 680 bytes
 .../www/res/resourceBundles/hu_HU_EURO.js.gz       |  Bin 0 -> 694 bytes
 .../www/res/resourceBundles/hu_HU_PREEURO.js.gz    |  Bin 0 -> 698 bytes
 .../project/www/res/resourceBundles/in.js.gz       |  Bin 0 -> 669 bytes
 .../project/www/res/resourceBundles/in_ID.js.gz    |  Bin 0 -> 684 bytes
 .../project/www/res/resourceBundles/is.js.gz       |  Bin 0 -> 702 bytes
 .../project/www/res/resourceBundles/is_IS.js.gz    |  Bin 0 -> 679 bytes
 .../project/www/res/resourceBundles/it.js.gz       |  Bin 0 -> 698 bytes
 .../project/www/res/resourceBundles/it_CH.js.gz    |  Bin 0 -> 723 bytes
 .../project/www/res/resourceBundles/it_IT.js.gz    |  Bin 0 -> 717 bytes
 .../www/res/resourceBundles/it_IT_PREEURO.js.gz    |  Bin 0 -> 734 bytes
 .../project/www/res/resourceBundles/iw.js.gz       |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/iw_IL.js.gz    |  Bin 0 -> 683 bytes
 .../project/www/res/resourceBundles/ja.js.gz       |  Bin 0 -> 703 bytes
 .../project/www/res/resourceBundles/ja_JP.js.gz    |  Bin 0 -> 692 bytes
 .../project/www/res/resourceBundles/ja_JP_JP.js.gz |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/kk.js.gz       |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/kk_KZ.js.gz    |  Bin 0 -> 711 bytes
 .../project/www/res/resourceBundles/kn.js.gz       |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/kn_IN.js.gz    |  Bin 0 -> 761 bytes
 .../project/www/res/resourceBundles/ko.js.gz       |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/ko_KR.js.gz    |  Bin 0 -> 695 bytes
 .../project/www/res/resourceBundles/lt.js.gz       |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/lt_LT.js.gz    |  Bin 0 -> 676 bytes
 .../www/res/resourceBundles/lt_LT_EURO.js.gz       |  Bin 0 -> 690 bytes
 .../www/res/resourceBundles/lt_LT_PREEURO.js.gz    |  Bin 0 -> 694 bytes
 .../project/www/res/resourceBundles/lv.js.gz       |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/lv_LV.js.gz    |  Bin 0 -> 677 bytes
 .../www/res/resourceBundles/lv_LV_EURO.js.gz       |  Bin 0 -> 691 bytes
 .../www/res/resourceBundles/lv_LV_PREEURO.js.gz    |  Bin 0 -> 695 bytes
 .../project/www/res/resourceBundles/mk.js.gz       |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/mk_MK.js.gz    |  Bin 0 -> 720 bytes
 .../project/www/res/resourceBundles/ml_IN.js.gz    |  Bin 0 -> 762 bytes
 .../project/www/res/resourceBundles/mr.js.gz       |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/mr_IN.js.gz    |  Bin 0 -> 761 bytes
 .../project/www/res/resourceBundles/ms.js.gz       |  Bin 0 -> 696 bytes
 .../project/www/res/resourceBundles/ms_MY.js.gz    |  Bin 0 -> 694 bytes
 .../project/www/res/resourceBundles/mt.js.gz       |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/mt_MT.js.gz    |  Bin 0 -> 685 bytes
 .../www/res/resourceBundles/mt_MT_EURO.js.gz       |  Bin 0 -> 699 bytes
 .../www/res/resourceBundles/mt_MT_PREEURO.js.gz    |  Bin 0 -> 703 bytes
 .../project/www/res/resourceBundles/nb_NO.js.gz    |  Bin 0 -> 688 bytes
 .../project/www/res/resourceBundles/nl.js.gz       |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/nl_BE.js.gz    |  Bin 0 -> 679 bytes
 .../www/res/resourceBundles/nl_BE_PREEURO.js.gz    |  Bin 0 -> 697 bytes
 .../project/www/res/resourceBundles/nl_NL.js.gz    |  Bin 0 -> 724 bytes
 .../www/res/resourceBundles/nl_NL_PREEURO.js.gz    |  Bin 0 -> 741 bytes
 .../project/www/res/resourceBundles/no.js.gz       |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/no_NO.js.gz    |  Bin 0 -> 680 bytes
 .../project/www/res/resourceBundles/no_NO_NY.js.gz |  Bin 0 -> 692 bytes
 .../project/www/res/resourceBundles/or_IN.js.gz    |  Bin 0 -> 761 bytes
 .../project/www/res/resourceBundles/pa.js.gz       |  Bin 0 -> 737 bytes
 .../project/www/res/resourceBundles/pa_IN.js.gz    |  Bin 0 -> 753 bytes
 .../project/www/res/resourceBundles/pl.js.gz       |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/pl_PL.js.gz    |  Bin 0 -> 683 bytes
 .../www/res/resourceBundles/pl_PL_EURO.js.gz       |  Bin 0 -> 697 bytes
 .../www/res/resourceBundles/pl_PL_PREEURO.js.gz    |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/pt.js.gz       |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/pt_BR.js.gz    |  Bin 0 -> 717 bytes
 .../project/www/res/resourceBundles/pt_PT.js.gz    |  Bin 0 -> 681 bytes
 .../www/res/resourceBundles/pt_PT_PREEURO.js.gz    |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/ro.js.gz       |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/ro_RO.js.gz    |  Bin 0 -> 675 bytes
 .../project/www/res/resourceBundles/ru.js.gz       |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/ru_RU.js.gz    |  Bin 0 -> 689 bytes
 .../project/www/res/resourceBundles/sh.js.gz       |  Bin 0 -> 691 bytes
 .../project/www/res/resourceBundles/sh_CS.js.gz    |  Bin 0 -> 725 bytes
 .../project/www/res/resourceBundles/sk.js.gz       |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/sk_SK.js.gz    |  Bin 0 -> 679 bytes
 .../www/res/resourceBundles/sk_SK_EURO.js.gz       |  Bin 0 -> 693 bytes
 .../www/res/resourceBundles/sk_SK_PREEURO.js.gz    |  Bin 0 -> 696 bytes
 .../project/www/res/resourceBundles/sl.js.gz       |  Bin 0 -> 700 bytes
 .../project/www/res/resourceBundles/sl_SI.js.gz    |  Bin 0 -> 676 bytes
 .../www/res/resourceBundles/sl_SI_PREEURO.js.gz    |  Bin 0 -> 693 bytes
 .../project/www/res/resourceBundles/sq.js.gz       |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/sq_AL.js.gz    |  Bin 0 -> 684 bytes
 .../project/www/res/resourceBundles/sr.js.gz       |  Bin 0 -> 698 bytes
 .../project/www/res/resourceBundles/sr_BA.js.gz    |  Bin 0 -> 727 bytes
 .../project/www/res/resourceBundles/sr_CS.js.gz    |  Bin 0 -> 727 bytes
 .../project/www/res/resourceBundles/sr_ME.js.gz    |  Bin 0 -> 716 bytes
 .../project/www/res/resourceBundles/sr_RS.js.gz    |  Bin 0 -> 712 bytes
 .../www/res/resourceBundles/sr_RS_Cyrl.js.gz       |  Bin 0 -> 727 bytes
 .../www/res/resourceBundles/sr_RS_Latn.js.gz       |  Bin 0 -> 724 bytes
 .../project/www/res/resourceBundles/sv.js.gz       |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/sv_SE.js.gz    |  Bin 0 -> 679 bytes
 .../www/res/resourceBundles/sv_SE_EURO.js.gz       |  Bin 0 -> 693 bytes
 .../www/res/resourceBundles/sv_SE_PREEURO.js.gz    |  Bin 0 -> 697 bytes
 .../project/www/res/resourceBundles/ta.js.gz       |  Bin 0 -> 736 bytes
 .../project/www/res/resourceBundles/ta_IN.js.gz    |  Bin 0 -> 759 bytes
 .../project/www/res/resourceBundles/te.js.gz       |  Bin 0 -> 701 bytes
 .../project/www/res/resourceBundles/te_IN.js.gz    |  Bin 0 -> 761 bytes
 .../project/www/res/resourceBundles/th.js.gz       |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/th_TH.js.gz    |  Bin 0 -> 705 bytes
 .../project/www/res/resourceBundles/th_TH_TH.js.gz |  Bin 0 -> 712 bytes
 .../project/www/res/resourceBundles/tr.js.gz       |  Bin 0 -> 699 bytes
 .../project/www/res/resourceBundles/tr_TR.js.gz    |  Bin 0 -> 676 bytes
 .../project/www/res/resourceBundles/uk.js.gz       |  Bin 0 -> 702 bytes
 .../project/www/res/resourceBundles/uk_UA.js.gz    |  Bin 0 -> 693 bytes
 .../project/www/res/resourceBundles/vi.js.gz       |  Bin 0 -> 663 bytes
 .../project/www/res/resourceBundles/vi_VN.js.gz    |  Bin 0 -> 678 bytes
 .../project/www/res/resourceBundles/zh.js.gz       |  Bin 0 -> 702 bytes
 .../project/www/res/resourceBundles/zh_CN.js.gz    |  Bin 0 -> 691 bytes
 .../project/www/res/resourceBundles/zh_HK.js.gz    |  Bin 0 -> 705 bytes
 .../project/www/res/resourceBundles/zh_SG.js.gz    |  Bin 0 -> 690 bytes
 .../project/www/res/resourceBundles/zh_TW.js.gz    |  Bin 0 -> 689 bytes
 .../www/res/screen/blackberry/screen-225.png       |  Bin 0 -> 16776 bytes
 .../bin/templates/project/www/spec.html            |   68 +
 .../bin/templates/project/www/spec/helper.js       |   33 +
 .../bin/templates/project/www/spec/index.js        |   67 +
 .../project/www/spec/lib/jasmine-1.2.0/MIT.LICENSE |   20 +
 .../www/spec/lib/jasmine-1.2.0/jasmine-html.js     |  616 +
 .../project/www/spec/lib/jasmine-1.2.0/jasmine.css |   81 +
 .../project/www/spec/lib/jasmine-1.2.0/jasmine.js  | 2529 ++++
 lib/cordova-blackberry/build.xml                   |  342 +
 .../framework/ext-air/Cordova_Network/library.xml  |   40 +
 .../src/org/apache/cordova/network/Network.as      |   88 +
 .../framework/ext-qnx/org.apache.cordova/client.js |   16 +
 .../framework/ext-qnx/org.apache.cordova/index.js  |   34 +
 .../ext-qnx/org.apache.cordova/manifest.json       |    5 +
 lib/cordova-blackberry/framework/ext-qnx/readme.md |    1 +
 lib/cordova-blackberry/framework/ext/.classpath    |    7 +
 lib/cordova-blackberry/framework/ext/.project      |   29 +
 .../net.rim.browser.tools.debug.widget.prefs       |    3 +
 .../ext/.settings/org.eclipse.jdt.core.prefs       |   12 +
 .../framework/ext/BlackBerry_App_Descriptor.xml    |   36 +
 .../framework/ext/src/library.xml                  |   35 +
 .../src/org/apache/cordova/CordovaExtension.java   |  208 +
 .../cordova/accelerometer/Accelerometer.java       |  228 +
 .../ext/src/org/apache/cordova/api/IPlugin.java    |   71 +
 .../ext/src/org/apache/cordova/api/Plugin.java     |  114 +
 .../src/org/apache/cordova/api/PluginManager.java  |  168 +
 .../apache/cordova/api/PluginManagerFunction.java  |  240 +
 .../src/org/apache/cordova/api/PluginResult.java   |  152 +
 .../ext/src/org/apache/cordova/app/App.java        |  147 +
 .../src/org/apache/cordova/battery/Battery.java    |  210 +
 .../ext/src/org/apache/cordova/camera/Camera.java  |  470 +
 .../org/apache/cordova/camera/CameraOptions.java   |  193 +
 .../org/apache/cordova/camera/PhotoListener.java   |  107 +
 .../cordova/capture/AudioCaptureListener.java      |   80 +
 .../cordova/capture/AudioCaptureOperation.java     |  173 +
 .../org/apache/cordova/capture/AudioControl.java   |   75 +
 .../org/apache/cordova/capture/CameraControl.java  |   87 +
 .../org/apache/cordova/capture/CaptureControl.java |  169 +
 .../org/apache/cordova/capture/CaptureMode.java    |   87 +
 .../apache/cordova/capture/CaptureOperation.java   |  202 +
 .../cordova/capture/ImageCaptureListener.java      |   84 +
 .../cordova/capture/ImageCaptureOperation.java     |  161 +
 .../org/apache/cordova/capture/MediaCapture.java   |  502 +
 .../src/org/apache/cordova/capture/MediaQueue.java |   44 +
 .../cordova/capture/VideoCaptureListener.java      |  107 +
 .../cordova/capture/VideoCaptureOperation.java     |  124 +
 .../ext/src/org/apache/cordova/device/Device.java  |   70 +
 .../ext/src/org/apache/cordova/file/Entry.java     |   66 +
 .../ext/src/org/apache/cordova/file/File.java      |   84 +
 .../src/org/apache/cordova/file/FileManager.java   | 1044 ++
 .../apache/cordova/geolocation/Geolocation.java    |  372 +
 .../cordova/geolocation/GeolocationListener.java   |  133 +
 .../cordova/geolocation/GeolocationResult.java     |   73 +
 .../cordova/geolocation/GeolocationStatus.java     |   36 +
 .../org/apache/cordova/geolocation/Position.java   |  133 +
 .../cordova/geolocation/PositionOptions.java       |   42 +
 .../cordova/globalization/Globalization.java       |  558 +
 .../cordova/globalization/GlobalizationError.java  |  115 +
 .../apache/cordova/globalization/Resources.java    |   99 +
 .../src/org/apache/cordova/globalization/Util.java |  721 +
 .../src/org/apache/cordova/http/FileTransfer.java  |  473 +
 .../org/apache/cordova/http/FileUploadResult.java  |   63 +
 .../src/org/apache/cordova/http/FileUploader.java  |  280 +
 .../ext/src/org/apache/cordova/http/HttpUtils.java |   66 +
 .../ext/src/org/apache/cordova/json4j/JSON.java    |  208 +
 .../src/org/apache/cordova/json4j/JSONArray.java   | 1123 ++
 .../org/apache/cordova/json4j/JSONArtifact.java    |  118 +
 .../org/apache/cordova/json4j/JSONException.java   |   55 +
 .../src/org/apache/cordova/json4j/JSONObject.java  | 1367 ++
 .../src/org/apache/cordova/json4j/JSONString.java  |   32 +
 .../org/apache/cordova/json4j/JSONStringer.java    |   58 +
 .../src/org/apache/cordova/json4j/JSONWriter.java  |  586 +
 .../cordova/json4j/internal/JSON4JNumber.java      |   22 +
 .../cordova/json4j/internal/JSON4JPBackReader.java |   47 +
 .../json4j/internal/JSON4JStringReader.java        |   54 +
 .../json4j/internal/JSON4JStringWriter.java        |   68 +
 .../apache/cordova/json4j/internal/NumberUtil.java |  109 +
 .../org/apache/cordova/json4j/internal/Parser.java |  338 +
 .../apache/cordova/json4j/internal/Serializer.java |  353 +
 .../cordova/json4j/internal/SerializerVerbose.java |  102 +
 .../org/apache/cordova/json4j/internal/Token.java  |  115 +
 .../apache/cordova/json4j/internal/Tokenizer.java  |  619 +
 .../src/org/apache/cordova/media/AudioPlayer.java  |  654 +
 .../ext/src/org/apache/cordova/media/Media.java    |  344 +
 .../cordova/network/ConnectionInfoAction.java      |  355 +
 .../src/org/apache/cordova/network/Network.java    |   66 +
 .../cordova/notification/ActivityDialog.java       |  146 +
 .../apache/cordova/notification/AlertAction.java   |   83 +
 .../apache/cordova/notification/AlertDialog.java   |   68 +
 .../apache/cordova/notification/BeepAction.java    |  160 +
 .../apache/cordova/notification/ConfirmAction.java |   85 +
 .../apache/cordova/notification/ConfirmDialog.java |  100 +
 .../apache/cordova/notification/Notification.java  |  135 +
 .../cordova/notification/ProgressDialog.java       |  182 +
 .../apache/cordova/notification/VibrateAction.java |   64 +
 .../ext/src/org/apache/cordova/pim/Contact.java    |  430 +
 .../ext/src/org/apache/cordova/ui/SpacerField.java |   71 +
 .../org/apache/cordova/util/ApplicationUtils.java  |  108 +
 .../ext/src/org/apache/cordova/util/FileUtils.java |  699 +
 .../ext/src/org/apache/cordova/util/Log.java       |   83 +
 .../src/org/apache/cordova/util/LogFunction.java   |   41 +
 .../ext/src/org/apache/cordova/util/Logger.java    |  155 +
 .../src/org/apache/cordova/util/StringUtils.java   |  103 +
 .../javascript/cordova.blackberry.js               |10317 +++++++++++++++
 lib/cordova-ios/CordovaLib/.gitignore              |    6 +
 lib/cordova-ios/CordovaLib/Classes/CDV.h           |   57 +
 .../CordovaLib/Classes/CDVAccelerometer.h          |   39 +
 .../CordovaLib/Classes/CDVAccelerometer.m          |  128 +
 .../CordovaLib/Classes/CDVAvailability.h           |   75 +
 lib/cordova-ios/CordovaLib/Classes/CDVBattery.h    |   40 +
 lib/cordova-ios/CordovaLib/Classes/CDVBattery.m    |  152 +
 lib/cordova-ios/CordovaLib/Classes/CDVCamera.h     |   91 +
 lib/cordova-ios/CordovaLib/Classes/CDVCamera.m     |  536 +
 lib/cordova-ios/CordovaLib/Classes/CDVCapture.h    |  118 +
 lib/cordova-ios/CordovaLib/Classes/CDVCapture.m    |  850 ++
 .../CordovaLib/Classes/CDVCommandDelegate.h        |   50 +
 .../CordovaLib/Classes/CDVCommandDelegateImpl.h    |   33 +
 .../CordovaLib/Classes/CDVCommandDelegateImpl.m    |  136 +
 .../CordovaLib/Classes/CDVCommandQueue.h           |   46 +
 .../CordovaLib/Classes/CDVCommandQueue.m           |  156 +
 .../CordovaLib/Classes/CDVConfigParser.h           |   29 +
 .../CordovaLib/Classes/CDVConfigParser.m           |   73 +
 lib/cordova-ios/CordovaLib/Classes/CDVConnection.h |   34 +
 lib/cordova-ios/CordovaLib/Classes/CDVConnection.m |  124 +
 lib/cordova-ios/CordovaLib/Classes/CDVContact.h    |  136 +
 lib/cordova-ios/CordovaLib/Classes/CDVContact.m    | 1738 +++
 lib/cordova-ios/CordovaLib/Classes/CDVContacts.h   |  151 +
 lib/cordova-ios/CordovaLib/Classes/CDVContacts.m   |  593 +
 lib/cordova-ios/CordovaLib/Classes/CDVDebug.h      |   25 +
 .../CordovaLib/Classes/CDVDebugConsole.h           |   28 +
 .../CordovaLib/Classes/CDVDebugConsole.m           |   37 +
 lib/cordova-ios/CordovaLib/Classes/CDVDevice.h     |   30 +
 lib/cordova-ios/CordovaLib/Classes/CDVDevice.m     |   89 +
 lib/cordova-ios/CordovaLib/Classes/CDVEcho.h       |   23 +
 lib/cordova-ios/CordovaLib/Classes/CDVEcho.m       |   54 +
 lib/cordova-ios/CordovaLib/Classes/CDVFile.h       |  104 +
 lib/cordova-ios/CordovaLib/Classes/CDVFile.m       | 1279 ++
 .../CordovaLib/Classes/CDVFileTransfer.h           |   72 +
 .../CordovaLib/Classes/CDVFileTransfer.m           |  579 +
 .../CordovaLib/Classes/CDVGlobalization.h          |  150 +
 .../CordovaLib/Classes/CDVGlobalization.m          |  790 ++
 .../CordovaLib/Classes/CDVInAppBrowser.h           |   85 +
 .../CordovaLib/Classes/CDVInAppBrowser.m           |  564 +
 .../CordovaLib/Classes/CDVInvokedUrlCommand.h      |   57 +
 .../CordovaLib/Classes/CDVInvokedUrlCommand.m      |  140 +
 lib/cordova-ios/CordovaLib/Classes/CDVJSON.h       |   30 +
 lib/cordova-ios/CordovaLib/Classes/CDVJSON.m       |   77 +
 .../CordovaLib/Classes/CDVLocalStorage.h           |   50 +
 .../CordovaLib/Classes/CDVLocalStorage.m           |  521 +
 lib/cordova-ios/CordovaLib/Classes/CDVLocation.h   |  104 +
 lib/cordova-ios/CordovaLib/Classes/CDVLocation.m   |  633 +
 lib/cordova-ios/CordovaLib/Classes/CDVLogger.h     |   26 +
 lib/cordova-ios/CordovaLib/Classes/CDVLogger.m     |   38 +
 .../CordovaLib/Classes/CDVNotification.h           |   36 +
 .../CordovaLib/Classes/CDVNotification.m           |  109 +
 lib/cordova-ios/CordovaLib/Classes/CDVPlugin.h     |   64 +
 lib/cordova-ios/CordovaLib/Classes/CDVPlugin.m     |  148 +
 .../CordovaLib/Classes/CDVPluginResult.h           |   61 +
 .../CordovaLib/Classes/CDVPluginResult.m           |  181 +
 .../CordovaLib/Classes/CDVReachability.h           |   85 +
 .../CordovaLib/Classes/CDVReachability.m           |  260 +
 .../Classes/CDVScreenOrientationDelegate.h         |   28 +
 lib/cordova-ios/CordovaLib/Classes/CDVSound.h      |  110 +
 lib/cordova-ios/CordovaLib/Classes/CDVSound.m      |  587 +
 .../CordovaLib/Classes/CDVSplashScreen.h           |   28 +
 .../CordovaLib/Classes/CDVSplashScreen.m           |   49 +
 .../CordovaLib/Classes/CDVURLProtocol.h            |   29 +
 .../CordovaLib/Classes/CDVURLProtocol.m            |  209 +
 .../CordovaLib/Classes/CDVUserAgentUtil.h          |   25 +
 .../CordovaLib/Classes/CDVUserAgentUtil.m          |   76 +
 .../CordovaLib/Classes/CDVViewController.h         |   76 +
 .../CordovaLib/Classes/CDVViewController.m         |  952 ++
 lib/cordova-ios/CordovaLib/Classes/CDVWhitelist.h  |   36 +
 lib/cordova-ios/CordovaLib/Classes/CDVWhitelist.m  |  192 +
 .../CordovaLib/Classes/NSArray+Comparisons.h       |   26 +
 .../CordovaLib/Classes/NSArray+Comparisons.m       |   41 +
 lib/cordova-ios/CordovaLib/Classes/NSData+Base64.h |   33 +
 lib/cordova-ios/CordovaLib/Classes/NSData+Base64.m |  286 +
 .../CordovaLib/Classes/NSDictionary+Extensions.h   |   35 +
 .../CordovaLib/Classes/NSDictionary+Extensions.m   |  159 +
 .../Classes/NSMutableArray+QueueAdditions.h        |   29 +
 .../Classes/NSMutableArray+QueueAdditions.m        |   58 +
 .../CordovaLib/Classes/UIDevice+Extensions.h       |   31 +
 .../CordovaLib/Classes/UIDevice+Extensions.m       |   47 +
 .../CordovaLib/Classes/compatibility/0.9.6/CDV.h   |   30 +
 .../Classes/compatibility/0.9.6/CDVPlugin.h        |   46 +
 .../Classes/compatibility/0.9.6/CDVPlugin.m        |   29 +
 .../CordovaLib/Classes/compatibility/1.5.0/CDV.h   |   32 +
 .../Classes/compatibility/1.5.0/CDVPlugin.h        |   23 +
 .../CordovaLib/Classes/compatibility/README.txt    |   23 +
 .../CordovaLib.xcodeproj/project.pbxproj           |  635 +
 lib/cordova-ios/CordovaLib/CordovaLib_Prefix.pch   |   22 +
 lib/cordova-ios/CordovaLib/VERSION                 |    1 +
 lib/cordova-ios/CordovaLib/cordova.ios.js          | 5941 +++++++++
 lib/cordova-ios/CordovaLibTests/CDVBase64Tests.m   |   64 +
 lib/cordova-ios/CordovaLibTests/CDVContactsTests.m |   60 +
 .../CordovaLibTests/CDVFakeFileManager.h           |   35 +
 .../CordovaLibTests/CDVFakeFileManager.m           |   43 +
 .../CordovaLibTests/CDVFileTransferTests.m         |  218 +
 .../CordovaLibTests/CDVInvokedUrlCommandTests.m    |  107 +
 .../CordovaLibTests/CDVLocalStorageTests.m         |  146 +
 .../CDVPluginResultJSONSerializationTests.m        |  155 +
 lib/cordova-ios/CordovaLibTests/CDVWebViewTest.h   |   43 +
 lib/cordova-ios/CordovaLibTests/CDVWebViewTest.m   |  122 +
 .../CordovaLibTests/CDVWhitelistTests.m            |  277 +
 .../CordovaLibTests/CordovaLibApp/AppDelegate.h    |   33 +
 .../CordovaLibTests/CordovaLibApp/AppDelegate.m    |  103 +
 .../CordovaLibApp/CordovaLibApp-Info.plist         |   45 +
 .../CordovaLibTests/CordovaLibApp/ViewController.h |   25 +
 .../CordovaLibTests/CordovaLibApp/ViewController.m |   53 +
 .../CordovaLibTests/CordovaLibApp/config.xml       |   38 +
 .../CordovaLibApp/en.lproj/InfoPlist.strings       |   20 +
 .../CordovaLibTests/CordovaLibApp/main.m           |   29 +
 .../CordovaLibTests/CordovaLibApp/www/index.html   |   84 +
 .../CordovaLibTests/CordovaLibTests-Info.plist     |   42 +
 .../CordovaTests.xcodeproj/project.pbxproj         |  666 +
 .../xcshareddata/xcschemes/CordovaLibApp.xcscheme  |   95 +
 .../xcschemes/CordovaLibTests.xcscheme             |   62 +
 .../CordovaLibTests/en.lproj/InfoPlist.strings     |   20 +
 lib/cordova-ios/FirstRun.md                        |   64 +
 lib/cordova-ios/LICENSE                            |  363 +
 lib/cordova-ios/Makefile                           |   87 +
 lib/cordova-ios/NOTICE                             |    5 +
 lib/cordova-ios/README.md                          |  220 +
 lib/cordova-ios/RELEASENOTES.md                    |  697 +
 lib/cordova-ios/Uninstall Cordova.applescript      |   64 +
 lib/cordova-ios/bin/README.md                      |   29 +
 lib/cordova-ios/bin/autotest                       |   24 +
 lib/cordova-ios/bin/cordova_plist_to_config_xml    |  127 +
 lib/cordova-ios/bin/create                         |  136 +
 lib/cordova-ios/bin/diagnose_project               |  216 +
 lib/cordova-ios/bin/package.json                   |   15 +
 lib/cordova-ios/bin/replaces                       |   28 +
 .../project/__TESTING__.xcodeproj/project.pbxproj  |  612 +
 .../bin/templates/project/__TESTING__/.gitignore   |    6 +
 .../project/__TESTING__/Classes/AppDelegate.h      |   42 +
 .../project/__TESTING__/Classes/AppDelegate.m      |  112 +
 .../__TESTING__/Classes/MainViewController.h       |   40 +
 .../__TESTING__/Classes/MainViewController.m       |  174 +
 .../__TESTING__/Classes/MainViewController.xib     |  138 +
 .../templates/project/__TESTING__/Plugins/README   |   20 +
 .../Resources/Capture.bundle/controls_bg.png       |  Bin 0 -> 955 bytes
 .../Resources/Capture.bundle/controls_bg@2x.png    |  Bin 0 -> 971 bytes
 .../Capture.bundle/controls_bg@2x~ipad.png         |  Bin 0 -> 2858 bytes
 .../Resources/Capture.bundle/controls_bg~ipad.png  |  Bin 0 -> 969 bytes
 .../Capture.bundle/microphone-568h@2x~iphone.png   |  Bin 0 -> 531673 bytes
 .../Resources/Capture.bundle/microphone.png        |  Bin 0 -> 72226 bytes
 .../Resources/Capture.bundle/microphone@2x.png     |  Bin 0 -> 282409 bytes
 .../Capture.bundle/microphone@2x~ipad.png          |  Bin 0 -> 911582 bytes
 .../Resources/Capture.bundle/microphone~ipad.png   |  Bin 0 -> 393975 bytes
 .../Resources/Capture.bundle/record_button.png     |  Bin 0 -> 5852 bytes
 .../Resources/Capture.bundle/record_button@2x.png  |  Bin 0 -> 13875 bytes
 .../Capture.bundle/record_button@2x~ipad.png       |  Bin 0 -> 15822 bytes
 .../Capture.bundle/record_button~ipad.png          |  Bin 0 -> 7547 bytes
 .../Resources/Capture.bundle/recording_bg.png      |  Bin 0 -> 973 bytes
 .../Resources/Capture.bundle/recording_bg@2x.png   |  Bin 0 -> 990 bytes
 .../Capture.bundle/recording_bg@2x~ipad.png        |  Bin 0 -> 1026 bytes
 .../Resources/Capture.bundle/recording_bg~ipad.png |  Bin 0 -> 996 bytes
 .../Resources/Capture.bundle/stop_button.png       |  Bin 0 -> 5514 bytes
 .../Resources/Capture.bundle/stop_button@2x.png    |  Bin 0 -> 12965 bytes
 .../Capture.bundle/stop_button@2x~ipad.png         |  Bin 0 -> 14474 bytes
 .../Resources/Capture.bundle/stop_button~ipad.png  |  Bin 0 -> 7119 bytes
 .../Resources/de.lproj/Localizable.strings         |   26 +
 .../Resources/en.lproj/Localizable.strings         |   25 +
 .../Resources/es.lproj/Localizable.strings         |   25 +
 .../__TESTING__/Resources/icons/icon-72.png        |  Bin 0 -> 4944 bytes
 .../__TESTING__/Resources/icons/icon-72@2x.png     |  Bin 0 -> 11706 bytes
 .../project/__TESTING__/Resources/icons/icon.png   |  Bin 0 -> 3902 bytes
 .../__TESTING__/Resources/icons/icon@2x.png        |  Bin 0 -> 7869 bytes
 .../Resources/se.lproj/Localizable.strings         |   26 +
 .../Resources/splash/Default-568h@2x~iphone.png    |  Bin 0 -> 29944 bytes
 .../Resources/splash/Default-Landscape@2x~ipad.png |  Bin 0 -> 75573 bytes
 .../Resources/splash/Default-Landscape~ipad.png    |  Bin 0 -> 33147 bytes
 .../Resources/splash/Default-Portrait@2x~ipad.png  |  Bin 0 -> 74097 bytes
 .../Resources/splash/Default-Portrait~ipad.png     |  Bin 0 -> 32666 bytes
 .../Resources/splash/Default@2x~iphone.png         |  Bin 0 -> 29475 bytes
 .../Resources/splash/Default~iphone.png            |  Bin 0 -> 10394 bytes
 .../project/__TESTING__/__TESTING__-Info.plist     |   78 +
 .../project/__TESTING__/__TESTING__-Prefix.pch     |   26 +
 .../bin/templates/project/__TESTING__/config.xml   |   61 +
 .../bin/templates/project/__TESTING__/main.m       |   35 +
 .../bin/templates/project/cordova/build            |   51 +
 .../bin/templates/project/cordova/emulate          |   58 +
 lib/cordova-ios/bin/templates/project/cordova/log  |   23 +
 .../bin/templates/project/cordova/release          |   51 +
 lib/cordova-ios/bin/templates/project/cordova/run  |   58 +
 .../bin/templates/project/www/css/index.css        |  115 +
 .../bin/templates/project/www/img/logo.png         |  Bin 0 -> 21814 bytes
 .../bin/templates/project/www/index.html           |   42 +
 .../bin/templates/project/www/js/index.js          |   49 +
 .../project/www/res/icon/ios/icon-57-2x.png        |  Bin 0 -> 7869 bytes
 .../templates/project/www/res/icon/ios/icon-57.png |  Bin 0 -> 3908 bytes
 .../project/www/res/icon/ios/icon-72-2x.png        |  Bin 0 -> 11706 bytes
 .../templates/project/www/res/icon/ios/icon-72.png |  Bin 0 -> 4944 bytes
 .../res/screen/ios/screen-ipad-landscape-2x.png    |  Bin 0 -> 1534088 bytes
 .../www/res/screen/ios/screen-ipad-landscape.png   |  Bin 0 -> 407370 bytes
 .../www/res/screen/ios/screen-ipad-portrait-2x.png |  Bin 0 -> 1610434 bytes
 .../www/res/screen/ios/screen-ipad-portrait.png    |  Bin 0 -> 422441 bytes
 .../res/screen/ios/screen-iphone-landscape-2x.png  |  Bin 0 -> 339639 bytes
 .../www/res/screen/ios/screen-iphone-landscape.png |  Bin 0 -> 92301 bytes
 .../res/screen/ios/screen-iphone-portrait-2x.png   |  Bin 0 -> 350593 bytes
 .../www/res/screen/ios/screen-iphone-portrait.png  |  Bin 0 -> 93897 bytes
 .../bin/templates/project/www/spec.html            |   68 +
 .../bin/templates/project/www/spec/helper.js       |   33 +
 .../bin/templates/project/www/spec/index.js        |   67 +
 .../project/www/spec/lib/jasmine-1.2.0/MIT.LICENSE |   20 +
 .../www/spec/lib/jasmine-1.2.0/jasmine-html.js     |  616 +
 .../project/www/spec/lib/jasmine-1.2.0/jasmine.css |   81 +
 .../project/www/spec/lib/jasmine-1.2.0/jasmine.js  | 2529 ++++
 lib/cordova-ios/bin/test                           |   53 +
 lib/cordova-ios/bin/tests/autotest.coffee          |   24 +
 lib/cordova-ios/bin/tests/create.coffee            |   34 +
 lib/cordova-ios/bin/tests/debug.coffee             |   18 +
 lib/cordova-ios/bin/tests/test.coffee              |   18 +
 lib/cordova-ios/bin/uncrustify.cfg                 | 1473 ++
 lib/cordova-ios/bin/uncrustify.sh                  |   88 +
 lib/cordova-ios/bin/update_cordova_subproject      |   92 +
 ...hanging the JavaScript to Native Bridge Mode.md |   36 +
 .../guides/Cordova Custom URL Scheme Handling.md   |   42 +
 .../guides/Cordova Plugin Upgrade Guide.md         |  164 +
 .../guides/Cordova Settings File.webloc            |    8 +
 lib/cordova-ios/guides/Create a New Project.webloc |    8 +
 lib/cordova-ios/hooks/pre-commit                   |   42 +
 package.json                                       |    5 +-
 src/platform.js                                    |    4 +-
 src/util.js                                        |   99 +-
 939 files changed, 110716 insertions(+), 125 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/d61deccd/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 92dbda3..4c59a50 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,5 +2,4 @@ node_modules
 npm-debug.log
 temp
 .DS_Store
-lib
 spec/fixtures/projects/native

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/d61deccd/bootstrap.js
----------------------------------------------------------------------
diff --git a/bootstrap.js b/bootstrap.js
index dcda8bc..d0beea0 100644
--- a/bootstrap.js
+++ b/bootstrap.js
@@ -8,27 +8,18 @@ var util      = require('./src/util'),
     shell     = require('shelljs'),
     platforms = require('./platforms');
 
-function create_native_projects() {
-    // Create native projects using bin/create
-    var tempDir = path.join(__dirname, 'spec', 'fixtures', 'projects', 'native');
-    shell.rm('-rf', tempDir);
-    shell.mkdir('-p', tempDir);
+// Create native projects using bin/create
+var tempDir = path.join(__dirname, 'spec', 'fixtures', 'projects', 'native');
+shell.rm('-rf', tempDir);
+shell.mkdir('-p', tempDir);
 
-    platforms.forEach(function(platform) {
-        var fix_path = path.join(tempDir, platform + '_fixture');
-        var create = path.join(util.libDirectory, 'cordova-' + platform, 'bin', 'create'); 
-        console.log('Creating cordova-' + platform + ' project using live project lib for tests...');
-        var cmd = create + ' "' + fix_path + '" org.apache.cordova.cordovaExample cordovaExample';
-        if (platform == 'blackberry') cmd = create + ' "' + fix_path + '" cordovaExample';
-        var create_result = shell.exec(cmd, {silent:true});
-        if (create_result.code > 0) throw ('Could not create a native ' + platform + ' project test fixture: ' + create_result.output);
-        console.log('.. complete.');
-    });
-}
-
-// download cordova 
-if (!util.haveCordovaLib()) {
-    util.getCordovaLib(create_native_projects);
-} else {
-    create_native_projects();
-}
+platforms.forEach(function(platform) {
+    var fix_path = path.join(tempDir, platform + '_fixture');
+    var create = path.join(util.libDirectory, 'cordova-' + platform, 'bin', 'create'); 
+    console.log('Creating cordova-' + platform + ' project using live project lib for tests...');
+    var cmd = create + ' "' + fix_path + '" org.apache.cordova.cordovaExample cordovaExample';
+    if (platform == 'blackberry') cmd = create + ' "' + fix_path + '" cordovaExample';
+    var create_result = shell.exec(cmd, {silent:true});
+    if (create_result.code > 0) throw ('Could not create a native ' + platform + ' project test fixture: ' + create_result.output);
+    console.log('.. complete.');
+});

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/d61deccd/lib/cordova-android/LICENSE
----------------------------------------------------------------------
diff --git a/lib/cordova-android/LICENSE b/lib/cordova-android/LICENSE
new file mode 100644
index 0000000..7a4a3ea
--- /dev/null
+++ b/lib/cordova-android/LICENSE
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/d61deccd/lib/cordova-android/NOTICE
----------------------------------------------------------------------
diff --git a/lib/cordova-android/NOTICE b/lib/cordova-android/NOTICE
new file mode 100644
index 0000000..b2157b6
--- /dev/null
+++ b/lib/cordova-android/NOTICE
@@ -0,0 +1,5 @@
+Apache Cordova
+Copyright 2012 The Apache Software Foundation
+
+This product includes software developed by
+The Apache Software Foundation (http://www.apache.org)

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/d61deccd/lib/cordova-android/README.md
----------------------------------------------------------------------
diff --git a/lib/cordova-android/README.md b/lib/cordova-android/README.md
new file mode 100755
index 0000000..a4ebee6
--- /dev/null
+++ b/lib/cordova-android/README.md
@@ -0,0 +1,109 @@
+Cordova Android
+===
+
+Cordova Android is an Android application library that allows for Cordova based projects to be built for the Android Platform. Cordova based applications are, at the core, an application written with web technology: HTML, CSS and JavaScript. 
+
+Apache Cordova is an effort undergoing incubation at The Apache
+Software Foundation (ASF), sponsored by the Apache Incubator project.
+Incubation is required of all newly accepted projects until a further
+review indicates that the infrastructure, communications, and decision
+making process have stabilized in a manner consistent with other
+successful ASF projects. While incubation status is not necessarily
+a reflection of the completeness or stability of the code, it does
+indicate that the project has yet to be fully endorsed by the ASF.
+
+Requires
+---
+
+- Java JDK 1.5 or greater
+- Apache ANT 1.8.0 or greater
+- Android SDK [http://developer.android.com](http://developer.android.com)
+- Apache Commons Codec [http://commons.apache.org/codec/](http://commons.apache.org/codec/)
+
+Test Requirements
+---
+- JUnit - [https://github.com/KentBeck/junit](https://github.com/KentBeck/junit)
+ 
+Building
+---
+
+To create your cordova.jar, copy the commons codec:
+
+    mv commons-codec-1.7.jar framework/libs
+
+then run in the framework directory:
+
+    android update project -p . -t android-17
+    ant jar
+
+
+Cordova Android Developer Tools
+---
+
+The Cordova developer tooling is split between general tooling and project level tooling. 
+
+To enable the command-line tools available in the ./bin directory, make
+sure you have all of the dependencies installed. You will need
+[NodeJS](http://nodejs.org) (which should come with `npm`). To install
+the dependencies:
+
+    $ cd bin
+    $ npm install
+
+General Commands
+
+    ./bin/create [path package activity] ... create the ./example app or a cordova android project
+    ./bin/bench ............................ generate a bench proj
+    ./bin/autotest ......................... test the cli tools
+    ./bin/test ............................. run mobile-spec
+
+Project Commands
+
+These commands live in a generated Cordova Android project.
+
+    ./cordova/debug [path] ..................... install to first device
+    ./cordova/emulate .......................... start avd (emulator) named default
+    ./cordova/log .............................. starts logcat
+
+Running the Example Project
+---
+
+Start avd (emulator) named `default`:
+
+    ./bin/emulate
+
+Create the example project and build it to the first device:
+
+    ./bin/create
+    cd example
+    ./cordova/debug
+
+Start adb logcat (console.log calls output here):
+
+    ./cordova/log
+
+Creating a new Cordova Android Project
+---
+
+    ./bin/create ~/Desktop/myapp com.myapp.special MyApp
+
+Importing a Cordova Android Project into Eclipse
+----
+
+1. File > New > Project...
+2. Android > Android Project
+3. Create project from existing source (point to the generated app found in tmp/android)
+4. Right click on libs/cordova.jar and add to build path
+5. Right click on the project root: Run as > Run Configurations
+6. Click on the Target tab and select Manual (this way you can choose the emulator or device to build to)
+
+Running Tests
+----
+Please see details under test/README.md.
+
+Further Reading
+---
+
+- [http://developer.android.com](http://developer.android.com)
+- [http://incubator.apache.org/cordova/](http://incubator.apache.org/cordova/)
+- [http://wiki.apache.org/cordova/](http://wiki.apache.org/cordova/)

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/d61deccd/lib/cordova-android/VERSION
----------------------------------------------------------------------
diff --git a/lib/cordova-android/VERSION b/lib/cordova-android/VERSION
new file mode 100644
index 0000000..2eca156
--- /dev/null
+++ b/lib/cordova-android/VERSION
@@ -0,0 +1 @@
+2.4.0rc1