├── LICENSE ├── README.md ├── config.xml ├── hooks └── README.md ├── imgs ├── .DS_Store ├── 屏幕快照 2016-07-13 下午11.49.54.png ├── 屏幕快照 2016-07-13 下午11.51.48.png └── 屏幕快照 2016-07-14 上午12.15.44.png ├── out ├── production │ ├── CordovaLib │ │ └── org │ │ │ └── apache │ │ │ └── cordova │ │ │ ├── AuthenticationToken.class │ │ │ ├── BuildConfig.class │ │ │ ├── CallbackContext.class │ │ │ ├── Config.class │ │ │ ├── ConfigXmlParser.class │ │ │ ├── CordovaActivity$1.class │ │ │ ├── CordovaActivity$2.class │ │ │ ├── CordovaActivity$3.class │ │ │ ├── CordovaActivity$4$1.class │ │ │ ├── CordovaActivity$4.class │ │ │ ├── CordovaActivity.class │ │ │ ├── CordovaArgs.class │ │ │ ├── CordovaBridge.class │ │ │ ├── CordovaClientCertRequest.class │ │ │ ├── CordovaDialogsHelper$1.class │ │ │ ├── CordovaDialogsHelper$2.class │ │ │ ├── CordovaDialogsHelper$3.class │ │ │ ├── CordovaDialogsHelper$4.class │ │ │ ├── CordovaDialogsHelper$5.class │ │ │ ├── CordovaDialogsHelper$6.class │ │ │ ├── CordovaDialogsHelper$7.class │ │ │ ├── CordovaDialogsHelper$8.class │ │ │ ├── CordovaDialogsHelper$9.class │ │ │ ├── CordovaDialogsHelper$Result.class │ │ │ ├── CordovaDialogsHelper.class │ │ │ ├── CordovaHttpAuthHandler.class │ │ │ ├── CordovaInterface.class │ │ │ ├── CordovaInterfaceImpl$ActivityResultHolder.class │ │ │ ├── CordovaInterfaceImpl.class │ │ │ ├── CordovaPlugin.class │ │ │ ├── CordovaPreferences.class │ │ │ ├── CordovaResourceApi$OpenForReadResult.class │ │ │ ├── CordovaResourceApi.class │ │ │ ├── CordovaWebView.class │ │ │ ├── CordovaWebViewEngine$Client.class │ │ │ ├── CordovaWebViewEngine$EngineView.class │ │ │ ├── CordovaWebViewEngine.class │ │ │ ├── CordovaWebViewImpl$1.class │ │ │ ├── CordovaWebViewImpl$2.class │ │ │ ├── CordovaWebViewImpl$3.class │ │ │ ├── CordovaWebViewImpl$EngineClient$1$1.class │ │ │ ├── CordovaWebViewImpl$EngineClient$1.class │ │ │ ├── CordovaWebViewImpl$EngineClient.class │ │ │ ├── CordovaWebViewImpl.class │ │ │ ├── CoreAndroid$1.class │ │ │ ├── CoreAndroid$2.class │ │ │ ├── CoreAndroid$3.class │ │ │ ├── CoreAndroid$4.class │ │ │ ├── CoreAndroid$5.class │ │ │ ├── CoreAndroid.class │ │ │ ├── ExposedJsApi.class │ │ │ ├── ICordovaClientCertRequest.class │ │ │ ├── ICordovaCookieManager.class │ │ │ ├── ICordovaHttpAuthHandler.class │ │ │ ├── LOG.class │ │ │ ├── NativeToJsMessageQueue$BridgeMode.class │ │ │ ├── NativeToJsMessageQueue$JsMessage.class │ │ │ ├── NativeToJsMessageQueue$LoadUrlBridgeMode$1.class │ │ │ ├── NativeToJsMessageQueue$LoadUrlBridgeMode.class │ │ │ ├── NativeToJsMessageQueue$NoOpBridgeMode.class │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$1.class │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$2.class │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$OnlineEventsBridgeModeDelegate.class │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode.class │ │ │ ├── NativeToJsMessageQueue.class │ │ │ ├── PluginEntry.class │ │ │ ├── PluginManager.class │ │ │ ├── PluginResult$Status.class │ │ │ ├── PluginResult.class │ │ │ ├── ResumeCallback.class │ │ │ ├── Whitelist$URLPattern.class │ │ │ ├── Whitelist.class │ │ │ └── engine │ │ │ ├── SystemCookieManager.class │ │ │ ├── SystemExposedJsApi.class │ │ │ ├── SystemWebChromeClient$1.class │ │ │ ├── SystemWebChromeClient$2.class │ │ │ ├── SystemWebChromeClient$3.class │ │ │ ├── SystemWebChromeClient$4.class │ │ │ ├── SystemWebChromeClient$5.class │ │ │ ├── SystemWebChromeClient.class │ │ │ ├── SystemWebView.class │ │ │ ├── SystemWebViewClient.class │ │ │ ├── SystemWebViewEngine$1.class │ │ │ ├── SystemWebViewEngine$2.class │ │ │ └── SystemWebViewEngine.class │ ├── android │ │ ├── com │ │ │ ├── rareloop │ │ │ │ └── cordova │ │ │ │ │ └── appversion │ │ │ │ │ └── RareloopAppVersion.class │ │ │ └── vaenow │ │ │ │ └── appupdate │ │ │ │ └── android │ │ │ │ ├── CheckAppUpdate.class │ │ │ │ ├── CheckUpdateThread.class │ │ │ │ ├── Constants.class │ │ │ │ ├── DownloadApkThread.class │ │ │ │ ├── DownloadHandler.class │ │ │ │ ├── GetRemoteXmlThread.class │ │ │ │ ├── MsgBox.class │ │ │ │ ├── ParseXmlService.class │ │ │ │ ├── UIValues.class │ │ │ │ ├── UpdateManager$1.class │ │ │ │ ├── UpdateManager$2.class │ │ │ │ ├── UpdateManager$3.class │ │ │ │ ├── UpdateManager$4.class │ │ │ │ ├── UpdateManager.class │ │ │ │ └── Version.class │ │ ├── io │ │ │ └── cordova │ │ │ │ └── hellocordova │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── MainActivity.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$xml.class │ │ │ │ └── R.class │ │ └── org │ │ │ └── apache │ │ │ └── cordova │ │ │ ├── BuildConfig.class │ │ │ ├── R$attr.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$xml.class │ │ │ ├── R.class │ │ │ └── whitelist │ │ │ ├── WhitelistPlugin$1.class │ │ │ ├── WhitelistPlugin$CustomConfigXmlParser.class │ │ │ └── WhitelistPlugin.class │ ├── buildConfig │ │ └── io │ │ │ └── cordova │ │ │ └── hellocordova │ │ │ └── BuildConfig.class │ ├── buildConfig1 │ │ └── org │ │ │ └── apache │ │ │ └── cordova │ │ │ └── BuildConfig.class │ ├── cordova-plugin-app-update │ │ └── com │ │ │ └── vaenow │ │ │ └── appupdate │ │ │ └── android │ │ │ ├── CheckAppUpdate.class │ │ │ ├── CheckUpdateThread.class │ │ │ ├── Constants.class │ │ │ ├── DownloadApkThread.class │ │ │ ├── DownloadHandler.class │ │ │ ├── GetRemoteXmlThread.class │ │ │ ├── MsgBox.class │ │ │ ├── ParseXmlService.class │ │ │ ├── UIValues.class │ │ │ ├── UpdateManager$1.class │ │ │ ├── UpdateManager$2.class │ │ │ ├── UpdateManager$3.class │ │ │ ├── UpdateManager$4.class │ │ │ ├── UpdateManager.class │ │ │ └── Version.class │ ├── cordova-plugin-appversion │ │ └── com │ │ │ └── rareloop │ │ │ └── cordova │ │ │ └── appversion │ │ │ └── RareloopAppVersion.class │ ├── cordova-plugin-whitelist │ │ └── org │ │ │ └── apache │ │ │ └── cordova │ │ │ └── whitelist │ │ │ ├── WhitelistPlugin$1.class │ │ │ ├── WhitelistPlugin$CustomConfigXmlParser.class │ │ │ └── WhitelistPlugin.class │ └── r │ │ └── io │ │ └── cordova │ │ └── hellocordova │ │ ├── R$attr.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ ├── R$xml.class │ │ └── R.class └── test │ └── properties-parser │ ├── ReadProperties.class │ ├── test-cases-copy.properties │ ├── test-cases.properties │ └── test.js ├── package.json ├── platforms ├── android │ ├── .gitignore │ ├── .gradle │ │ └── 2.2.1 │ │ │ └── taskArtifacts │ │ │ ├── cache.properties │ │ │ ├── cache.properties.lock │ │ │ ├── fileHashes.bin │ │ │ ├── fileSnapshots.bin │ │ │ ├── outputFileStates.bin │ │ │ └── taskArtifacts.bin │ ├── AndroidManifest.xml │ ├── CordovaLib │ │ ├── AndroidManifest.xml │ │ ├── CordovaLib.iml │ │ ├── build.gradle │ │ ├── build │ │ │ ├── generated │ │ │ │ └── source │ │ │ │ │ └── buildConfig │ │ │ │ │ ├── buildConfig1.iml │ │ │ │ │ └── debug │ │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── cordova │ │ │ │ │ └── BuildConfig.java │ │ │ ├── intermediates │ │ │ │ ├── bundles │ │ │ │ │ └── debug │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── classes │ │ │ │ │ └── debug │ │ │ │ │ │ └── org │ │ │ │ │ │ └── apache │ │ │ │ │ │ └── cordova │ │ │ │ │ │ ├── AuthenticationToken.class │ │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ │ ├── CallbackContext.class │ │ │ │ │ │ ├── Config.class │ │ │ │ │ │ ├── ConfigXmlParser.class │ │ │ │ │ │ ├── CordovaActivity$1.class │ │ │ │ │ │ ├── CordovaActivity$2.class │ │ │ │ │ │ ├── CordovaActivity$3.class │ │ │ │ │ │ ├── CordovaActivity$4$1.class │ │ │ │ │ │ ├── CordovaActivity$4.class │ │ │ │ │ │ ├── CordovaActivity.class │ │ │ │ │ │ ├── CordovaArgs.class │ │ │ │ │ │ ├── CordovaBridge.class │ │ │ │ │ │ ├── CordovaClientCertRequest.class │ │ │ │ │ │ ├── CordovaDialogsHelper$1.class │ │ │ │ │ │ ├── CordovaDialogsHelper$2.class │ │ │ │ │ │ ├── CordovaDialogsHelper$3.class │ │ │ │ │ │ ├── CordovaDialogsHelper$4.class │ │ │ │ │ │ ├── CordovaDialogsHelper$5.class │ │ │ │ │ │ ├── CordovaDialogsHelper$6.class │ │ │ │ │ │ ├── CordovaDialogsHelper$7.class │ │ │ │ │ │ ├── CordovaDialogsHelper$8.class │ │ │ │ │ │ ├── CordovaDialogsHelper$9.class │ │ │ │ │ │ ├── CordovaDialogsHelper$Result.class │ │ │ │ │ │ ├── CordovaDialogsHelper.class │ │ │ │ │ │ ├── CordovaHttpAuthHandler.class │ │ │ │ │ │ ├── CordovaInterface.class │ │ │ │ │ │ ├── CordovaInterfaceImpl$ActivityResultHolder.class │ │ │ │ │ │ ├── CordovaInterfaceImpl.class │ │ │ │ │ │ ├── CordovaPlugin.class │ │ │ │ │ │ ├── CordovaPreferences.class │ │ │ │ │ │ ├── CordovaResourceApi$OpenForReadResult.class │ │ │ │ │ │ ├── CordovaResourceApi.class │ │ │ │ │ │ ├── CordovaWebView.class │ │ │ │ │ │ ├── CordovaWebViewEngine$Client.class │ │ │ │ │ │ ├── CordovaWebViewEngine$EngineView.class │ │ │ │ │ │ ├── CordovaWebViewEngine.class │ │ │ │ │ │ ├── CordovaWebViewImpl$1.class │ │ │ │ │ │ ├── CordovaWebViewImpl$2.class │ │ │ │ │ │ ├── CordovaWebViewImpl$3.class │ │ │ │ │ │ ├── CordovaWebViewImpl$EngineClient$1$1.class │ │ │ │ │ │ ├── CordovaWebViewImpl$EngineClient$1.class │ │ │ │ │ │ ├── CordovaWebViewImpl$EngineClient.class │ │ │ │ │ │ ├── CordovaWebViewImpl.class │ │ │ │ │ │ ├── CoreAndroid$1.class │ │ │ │ │ │ ├── CoreAndroid$2.class │ │ │ │ │ │ ├── CoreAndroid$3.class │ │ │ │ │ │ ├── CoreAndroid$4.class │ │ │ │ │ │ ├── CoreAndroid$5.class │ │ │ │ │ │ ├── CoreAndroid.class │ │ │ │ │ │ ├── ExposedJsApi.class │ │ │ │ │ │ ├── ICordovaClientCertRequest.class │ │ │ │ │ │ ├── ICordovaCookieManager.class │ │ │ │ │ │ ├── ICordovaHttpAuthHandler.class │ │ │ │ │ │ ├── LOG.class │ │ │ │ │ │ ├── NativeToJsMessageQueue$BridgeMode.class │ │ │ │ │ │ ├── NativeToJsMessageQueue$JsMessage.class │ │ │ │ │ │ ├── NativeToJsMessageQueue$LoadUrlBridgeMode$1.class │ │ │ │ │ │ ├── NativeToJsMessageQueue$LoadUrlBridgeMode.class │ │ │ │ │ │ ├── NativeToJsMessageQueue$NoOpBridgeMode.class │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$1.class │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$2.class │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode$OnlineEventsBridgeModeDelegate.class │ │ │ │ │ │ ├── NativeToJsMessageQueue$OnlineEventsBridgeMode.class │ │ │ │ │ │ ├── NativeToJsMessageQueue.class │ │ │ │ │ │ ├── PluginEntry.class │ │ │ │ │ │ ├── PluginManager.class │ │ │ │ │ │ ├── PluginResult$Status.class │ │ │ │ │ │ ├── PluginResult.class │ │ │ │ │ │ ├── ResumeCallback.class │ │ │ │ │ │ ├── Whitelist$URLPattern.class │ │ │ │ │ │ ├── Whitelist.class │ │ │ │ │ │ └── engine │ │ │ │ │ │ ├── SystemCookieManager.class │ │ │ │ │ │ ├── SystemExposedJsApi.class │ │ │ │ │ │ ├── SystemWebChromeClient$1.class │ │ │ │ │ │ ├── SystemWebChromeClient$2.class │ │ │ │ │ │ ├── SystemWebChromeClient$3.class │ │ │ │ │ │ ├── SystemWebChromeClient$4.class │ │ │ │ │ │ ├── SystemWebChromeClient$5.class │ │ │ │ │ │ ├── SystemWebChromeClient.class │ │ │ │ │ │ ├── SystemWebView.class │ │ │ │ │ │ ├── SystemWebViewClient.class │ │ │ │ │ │ ├── SystemWebViewEngine$1.class │ │ │ │ │ │ ├── SystemWebViewEngine$2.class │ │ │ │ │ │ └── SystemWebViewEngine.class │ │ │ │ └── incremental │ │ │ │ │ ├── compileDebugAidl │ │ │ │ │ └── dependency.store │ │ │ │ │ ├── mergeDebugAssets │ │ │ │ │ └── merger.xml │ │ │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ │ └── merger.xml │ │ │ │ │ └── packageDebugResources │ │ │ │ │ └── merger.xml │ │ │ └── outputs │ │ │ │ └── aar │ │ │ │ └── CordovaLib-debug.aar │ │ ├── cordova.gradle │ │ ├── project.properties │ │ └── src │ │ │ └── org │ │ │ └── apache │ │ │ └── cordova │ │ │ ├── AuthenticationToken.java │ │ │ ├── CallbackContext.java │ │ │ ├── Config.java │ │ │ ├── ConfigXmlParser.java │ │ │ ├── CordovaActivity.java │ │ │ ├── CordovaArgs.java │ │ │ ├── CordovaBridge.java │ │ │ ├── CordovaClientCertRequest.java │ │ │ ├── CordovaDialogsHelper.java │ │ │ ├── CordovaHttpAuthHandler.java │ │ │ ├── CordovaInterface.java │ │ │ ├── CordovaInterfaceImpl.java │ │ │ ├── CordovaPlugin.java │ │ │ ├── CordovaPreferences.java │ │ │ ├── CordovaResourceApi.java │ │ │ ├── CordovaWebView.java │ │ │ ├── CordovaWebViewEngine.java │ │ │ ├── CordovaWebViewImpl.java │ │ │ ├── CoreAndroid.java │ │ │ ├── ExposedJsApi.java │ │ │ ├── ICordovaClientCertRequest.java │ │ │ ├── ICordovaCookieManager.java │ │ │ ├── ICordovaHttpAuthHandler.java │ │ │ ├── LOG.java │ │ │ ├── NativeToJsMessageQueue.java │ │ │ ├── PluginEntry.java │ │ │ ├── PluginManager.java │ │ │ ├── PluginResult.java │ │ │ ├── ResumeCallback.java │ │ │ ├── Whitelist.java │ │ │ └── engine │ │ │ ├── SystemCookieManager.java │ │ │ ├── SystemExposedJsApi.java │ │ │ ├── SystemWebChromeClient.java │ │ │ ├── SystemWebView.java │ │ │ ├── SystemWebViewClient.java │ │ │ └── SystemWebViewEngine.java │ ├── android.iml │ ├── android.json │ ├── assets │ │ └── www │ │ │ ├── cordova-js-src │ │ │ ├── android │ │ │ │ ├── nativeapiprovider.js │ │ │ │ └── promptbasednativeapi.js │ │ │ ├── exec.js │ │ │ ├── platform.js │ │ │ └── plugin │ │ │ │ └── android │ │ │ │ └── app.js │ │ │ ├── cordova.js │ │ │ ├── cordova_plugins.js │ │ │ ├── css │ │ │ └── index.css │ │ │ ├── img │ │ │ └── logo.png │ │ │ ├── index.html │ │ │ ├── index.html.bak │ │ │ ├── js │ │ │ └── index.js │ │ │ └── plugins │ │ │ ├── cordova-plugin-app-update │ │ │ └── www │ │ │ │ └── AppUpdate.js │ │ │ └── cordova-plugin-appversion │ │ │ └── www │ │ │ └── app-version.js │ ├── build.gradle │ ├── cordova │ │ ├── .jshintrc │ │ ├── Api.js │ │ ├── android_sdk_version │ │ ├── build │ │ ├── build.bat │ │ ├── check_reqs │ │ ├── check_reqs.bat │ │ ├── clean │ │ ├── clean.bat │ │ ├── defaults.xml │ │ ├── lib │ │ │ ├── Adb.js │ │ │ ├── AndroidManifest.js │ │ │ ├── AndroidProject.js │ │ │ ├── ConsoleLogger.js │ │ │ ├── android_sdk_version.js │ │ │ ├── build.js │ │ │ ├── builders │ │ │ │ ├── AntBuilder.js │ │ │ │ ├── GenericBuilder.js │ │ │ │ ├── GradleBuilder.js │ │ │ │ └── builders.js │ │ │ ├── check_reqs.js │ │ │ ├── device.js │ │ │ ├── emulator.js │ │ │ ├── install-device │ │ │ ├── install-device.bat │ │ │ ├── install-emulator │ │ │ ├── install-emulator.bat │ │ │ ├── list-devices │ │ │ ├── list-devices.bat │ │ │ ├── list-emulator-images │ │ │ ├── list-emulator-images.bat │ │ │ ├── list-started-emulators │ │ │ ├── list-started-emulators.bat │ │ │ ├── log.js │ │ │ ├── plugin-build.gradle │ │ │ ├── pluginHandlers.js │ │ │ ├── prepare.js │ │ │ ├── retry.js │ │ │ ├── run.js │ │ │ ├── start-emulator │ │ │ └── start-emulator.bat │ │ ├── log │ │ ├── log.bat │ │ ├── node_modules │ │ │ ├── abbrev │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── abbrev.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── ansi │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── beep │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── clear │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── cursorPosition.js │ │ │ │ │ └── progress │ │ │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── ansi.js │ │ │ │ │ └── newlines.js │ │ │ │ └── package.json │ │ │ ├── balanced-match │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── example.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── balanced.js │ │ │ ├── base64-js │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.MIT │ │ │ │ ├── README.md │ │ │ │ ├── bench │ │ │ │ │ └── bench.js │ │ │ │ ├── lib │ │ │ │ │ └── b64.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── convert.js │ │ │ │ │ └── url-safe.js │ │ │ ├── big-integer │ │ │ │ ├── BigInteger.js │ │ │ │ ├── BigInteger.min.js │ │ │ │ ├── README.md │ │ │ │ └── package.json │ │ │ ├── bplist-parser │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── bplistParser.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── airplay.bplist │ │ │ │ │ ├── iTunes-small.bplist │ │ │ │ │ ├── int64.bplist │ │ │ │ │ ├── int64.xml │ │ │ │ │ ├── parseTest.js │ │ │ │ │ ├── sample1.bplist │ │ │ │ │ ├── sample2.bplist │ │ │ │ │ ├── uid.bplist │ │ │ │ │ ├── utf16.bplist │ │ │ │ │ └── utf16_chinese.plist │ │ │ ├── brace-expansion │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── example.js │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── concat-map │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.markdown │ │ │ │ ├── example │ │ │ │ │ └── map.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── map.js │ │ │ ├── cordova-common │ │ │ │ ├── .jscs.json │ │ │ │ ├── .jshintignore │ │ │ │ ├── .npmignore │ │ │ │ ├── .ratignore │ │ │ │ ├── README.md │ │ │ │ ├── RELEASENOTES.md │ │ │ │ ├── cordova-common.js │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── ActionStack.js │ │ │ │ │ ├── ConfigChanges │ │ │ │ │ ├── ConfigChanges.js │ │ │ │ │ ├── ConfigFile.js │ │ │ │ │ ├── ConfigKeeper.js │ │ │ │ │ └── munge-util.js │ │ │ │ │ ├── ConfigParser │ │ │ │ │ ├── ConfigParser.js │ │ │ │ │ └── README.md │ │ │ │ │ ├── CordovaError │ │ │ │ │ ├── CordovaError.js │ │ │ │ │ └── CordovaExternalToolErrorContext.js │ │ │ │ │ ├── CordovaLogger.js │ │ │ │ │ ├── PlatformJson.js │ │ │ │ │ ├── PluginInfo │ │ │ │ │ ├── PluginInfo.js │ │ │ │ │ └── PluginInfoProvider.js │ │ │ │ │ ├── events.js │ │ │ │ │ ├── superspawn.js │ │ │ │ │ └── util │ │ │ │ │ ├── plist-helpers.js │ │ │ │ │ └── xml-helpers.js │ │ │ ├── cordova-registry-mapper │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ └── test.js │ │ │ ├── elementtree │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── NOTICE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── elementpath.js │ │ │ │ │ ├── elementtree.js │ │ │ │ │ ├── errors.js │ │ │ │ │ ├── parser.js │ │ │ │ │ ├── parsers │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── sax.js │ │ │ │ │ ├── sprintf.js │ │ │ │ │ ├── treebuilder.js │ │ │ │ │ └── utils.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ ├── data │ │ │ │ │ ├── xml1.xml │ │ │ │ │ └── xml2.xml │ │ │ │ │ └── test-simple.js │ │ │ ├── glob │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── common.js │ │ │ │ ├── glob.js │ │ │ │ ├── package.json │ │ │ │ └── sync.js │ │ │ ├── inflight │ │ │ │ ├── .eslintrc │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── inflight.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── inherits │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── inherits.js │ │ │ │ ├── inherits_browser.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── lodash │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── array.js │ │ │ │ ├── array │ │ │ │ │ ├── chunk.js │ │ │ │ │ ├── compact.js │ │ │ │ │ ├── difference.js │ │ │ │ │ ├── drop.js │ │ │ │ │ ├── dropRight.js │ │ │ │ │ ├── dropRightWhile.js │ │ │ │ │ ├── dropWhile.js │ │ │ │ │ ├── fill.js │ │ │ │ │ ├── findIndex.js │ │ │ │ │ ├── findLastIndex.js │ │ │ │ │ ├── first.js │ │ │ │ │ ├── flatten.js │ │ │ │ │ ├── flattenDeep.js │ │ │ │ │ ├── head.js │ │ │ │ │ ├── indexOf.js │ │ │ │ │ ├── initial.js │ │ │ │ │ ├── intersection.js │ │ │ │ │ ├── last.js │ │ │ │ │ ├── lastIndexOf.js │ │ │ │ │ ├── object.js │ │ │ │ │ ├── pull.js │ │ │ │ │ ├── pullAt.js │ │ │ │ │ ├── remove.js │ │ │ │ │ ├── rest.js │ │ │ │ │ ├── slice.js │ │ │ │ │ ├── sortedIndex.js │ │ │ │ │ ├── sortedLastIndex.js │ │ │ │ │ ├── tail.js │ │ │ │ │ ├── take.js │ │ │ │ │ ├── takeRight.js │ │ │ │ │ ├── takeRightWhile.js │ │ │ │ │ ├── takeWhile.js │ │ │ │ │ ├── union.js │ │ │ │ │ ├── uniq.js │ │ │ │ │ ├── unique.js │ │ │ │ │ ├── unzip.js │ │ │ │ │ ├── unzipWith.js │ │ │ │ │ ├── without.js │ │ │ │ │ ├── xor.js │ │ │ │ │ ├── zip.js │ │ │ │ │ ├── zipObject.js │ │ │ │ │ └── zipWith.js │ │ │ │ ├── chain.js │ │ │ │ ├── chain │ │ │ │ │ ├── chain.js │ │ │ │ │ ├── commit.js │ │ │ │ │ ├── concat.js │ │ │ │ │ ├── lodash.js │ │ │ │ │ ├── plant.js │ │ │ │ │ ├── reverse.js │ │ │ │ │ ├── run.js │ │ │ │ │ ├── tap.js │ │ │ │ │ ├── thru.js │ │ │ │ │ ├── toJSON.js │ │ │ │ │ ├── toString.js │ │ │ │ │ ├── value.js │ │ │ │ │ ├── valueOf.js │ │ │ │ │ ├── wrapperChain.js │ │ │ │ │ ├── wrapperCommit.js │ │ │ │ │ ├── wrapperConcat.js │ │ │ │ │ ├── wrapperPlant.js │ │ │ │ │ ├── wrapperReverse.js │ │ │ │ │ ├── wrapperToString.js │ │ │ │ │ └── wrapperValue.js │ │ │ │ ├── collection.js │ │ │ │ ├── collection │ │ │ │ │ ├── all.js │ │ │ │ │ ├── any.js │ │ │ │ │ ├── at.js │ │ │ │ │ ├── collect.js │ │ │ │ │ ├── contains.js │ │ │ │ │ ├── countBy.js │ │ │ │ │ ├── detect.js │ │ │ │ │ ├── each.js │ │ │ │ │ ├── eachRight.js │ │ │ │ │ ├── every.js │ │ │ │ │ ├── filter.js │ │ │ │ │ ├── find.js │ │ │ │ │ ├── findLast.js │ │ │ │ │ ├── findWhere.js │ │ │ │ │ ├── foldl.js │ │ │ │ │ ├── foldr.js │ │ │ │ │ ├── forEach.js │ │ │ │ │ ├── forEachRight.js │ │ │ │ │ ├── groupBy.js │ │ │ │ │ ├── include.js │ │ │ │ │ ├── includes.js │ │ │ │ │ ├── indexBy.js │ │ │ │ │ ├── inject.js │ │ │ │ │ ├── invoke.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── max.js │ │ │ │ │ ├── min.js │ │ │ │ │ ├── partition.js │ │ │ │ │ ├── pluck.js │ │ │ │ │ ├── reduce.js │ │ │ │ │ ├── reduceRight.js │ │ │ │ │ ├── reject.js │ │ │ │ │ ├── sample.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── shuffle.js │ │ │ │ │ ├── size.js │ │ │ │ │ ├── some.js │ │ │ │ │ ├── sortBy.js │ │ │ │ │ ├── sortByAll.js │ │ │ │ │ ├── sortByOrder.js │ │ │ │ │ ├── sum.js │ │ │ │ │ └── where.js │ │ │ │ ├── date.js │ │ │ │ ├── date │ │ │ │ │ └── now.js │ │ │ │ ├── function.js │ │ │ │ ├── function │ │ │ │ │ ├── after.js │ │ │ │ │ ├── ary.js │ │ │ │ │ ├── backflow.js │ │ │ │ │ ├── before.js │ │ │ │ │ ├── bind.js │ │ │ │ │ ├── bindAll.js │ │ │ │ │ ├── bindKey.js │ │ │ │ │ ├── compose.js │ │ │ │ │ ├── curry.js │ │ │ │ │ ├── curryRight.js │ │ │ │ │ ├── debounce.js │ │ │ │ │ ├── defer.js │ │ │ │ │ ├── delay.js │ │ │ │ │ ├── flow.js │ │ │ │ │ ├── flowRight.js │ │ │ │ │ ├── memoize.js │ │ │ │ │ ├── modArgs.js │ │ │ │ │ ├── negate.js │ │ │ │ │ ├── once.js │ │ │ │ │ ├── partial.js │ │ │ │ │ ├── partialRight.js │ │ │ │ │ ├── rearg.js │ │ │ │ │ ├── restParam.js │ │ │ │ │ ├── spread.js │ │ │ │ │ ├── throttle.js │ │ │ │ │ └── wrap.js │ │ │ │ ├── index.js │ │ │ │ ├── internal │ │ │ │ │ ├── LazyWrapper.js │ │ │ │ │ ├── LodashWrapper.js │ │ │ │ │ ├── MapCache.js │ │ │ │ │ ├── SetCache.js │ │ │ │ │ ├── arrayConcat.js │ │ │ │ │ ├── arrayCopy.js │ │ │ │ │ ├── arrayEach.js │ │ │ │ │ ├── arrayEachRight.js │ │ │ │ │ ├── arrayEvery.js │ │ │ │ │ ├── arrayExtremum.js │ │ │ │ │ ├── arrayFilter.js │ │ │ │ │ ├── arrayMap.js │ │ │ │ │ ├── arrayPush.js │ │ │ │ │ ├── arrayReduce.js │ │ │ │ │ ├── arrayReduceRight.js │ │ │ │ │ ├── arraySome.js │ │ │ │ │ ├── arraySum.js │ │ │ │ │ ├── assignDefaults.js │ │ │ │ │ ├── assignOwnDefaults.js │ │ │ │ │ ├── assignWith.js │ │ │ │ │ ├── baseAssign.js │ │ │ │ │ ├── baseAt.js │ │ │ │ │ ├── baseCallback.js │ │ │ │ │ ├── baseClone.js │ │ │ │ │ ├── baseCompareAscending.js │ │ │ │ │ ├── baseCopy.js │ │ │ │ │ ├── baseCreate.js │ │ │ │ │ ├── baseDelay.js │ │ │ │ │ ├── baseDifference.js │ │ │ │ │ ├── baseEach.js │ │ │ │ │ ├── baseEachRight.js │ │ │ │ │ ├── baseEvery.js │ │ │ │ │ ├── baseExtremum.js │ │ │ │ │ ├── baseFill.js │ │ │ │ │ ├── baseFilter.js │ │ │ │ │ ├── baseFind.js │ │ │ │ │ ├── baseFindIndex.js │ │ │ │ │ ├── baseFlatten.js │ │ │ │ │ ├── baseFor.js │ │ │ │ │ ├── baseForIn.js │ │ │ │ │ ├── baseForOwn.js │ │ │ │ │ ├── baseForOwnRight.js │ │ │ │ │ ├── baseForRight.js │ │ │ │ │ ├── baseFunctions.js │ │ │ │ │ ├── baseGet.js │ │ │ │ │ ├── baseIndexOf.js │ │ │ │ │ ├── baseIsEqual.js │ │ │ │ │ ├── baseIsEqualDeep.js │ │ │ │ │ ├── baseIsFunction.js │ │ │ │ │ ├── baseIsMatch.js │ │ │ │ │ ├── baseLodash.js │ │ │ │ │ ├── baseMap.js │ │ │ │ │ ├── baseMatches.js │ │ │ │ │ ├── baseMatchesProperty.js │ │ │ │ │ ├── baseMerge.js │ │ │ │ │ ├── baseMergeDeep.js │ │ │ │ │ ├── baseProperty.js │ │ │ │ │ ├── basePropertyDeep.js │ │ │ │ │ ├── basePullAt.js │ │ │ │ │ ├── baseRandom.js │ │ │ │ │ ├── baseReduce.js │ │ │ │ │ ├── baseSetData.js │ │ │ │ │ ├── baseSlice.js │ │ │ │ │ ├── baseSome.js │ │ │ │ │ ├── baseSortBy.js │ │ │ │ │ ├── baseSortByOrder.js │ │ │ │ │ ├── baseSum.js │ │ │ │ │ ├── baseToString.js │ │ │ │ │ ├── baseUniq.js │ │ │ │ │ ├── baseValues.js │ │ │ │ │ ├── baseWhile.js │ │ │ │ │ ├── baseWrapperValue.js │ │ │ │ │ ├── binaryIndex.js │ │ │ │ │ ├── binaryIndexBy.js │ │ │ │ │ ├── bindCallback.js │ │ │ │ │ ├── bufferClone.js │ │ │ │ │ ├── cacheIndexOf.js │ │ │ │ │ ├── cachePush.js │ │ │ │ │ ├── charsLeftIndex.js │ │ │ │ │ ├── charsRightIndex.js │ │ │ │ │ ├── compareAscending.js │ │ │ │ │ ├── compareMultiple.js │ │ │ │ │ ├── composeArgs.js │ │ │ │ │ ├── composeArgsRight.js │ │ │ │ │ ├── createAggregator.js │ │ │ │ │ ├── createAssigner.js │ │ │ │ │ ├── createBaseEach.js │ │ │ │ │ ├── createBaseFor.js │ │ │ │ │ ├── createBindWrapper.js │ │ │ │ │ ├── createCache.js │ │ │ │ │ ├── createCompounder.js │ │ │ │ │ ├── createCtorWrapper.js │ │ │ │ │ ├── createCurry.js │ │ │ │ │ ├── createDefaults.js │ │ │ │ │ ├── createExtremum.js │ │ │ │ │ ├── createFind.js │ │ │ │ │ ├── createFindIndex.js │ │ │ │ │ ├── createFindKey.js │ │ │ │ │ ├── createFlow.js │ │ │ │ │ ├── createForEach.js │ │ │ │ │ ├── createForIn.js │ │ │ │ │ ├── createForOwn.js │ │ │ │ │ ├── createHybridWrapper.js │ │ │ │ │ ├── createObjectMapper.js │ │ │ │ │ ├── createPadDir.js │ │ │ │ │ ├── createPadding.js │ │ │ │ │ ├── createPartial.js │ │ │ │ │ ├── createPartialWrapper.js │ │ │ │ │ ├── createReduce.js │ │ │ │ │ ├── createRound.js │ │ │ │ │ ├── createSortedIndex.js │ │ │ │ │ ├── createWrapper.js │ │ │ │ │ ├── deburrLetter.js │ │ │ │ │ ├── equalArrays.js │ │ │ │ │ ├── equalByTag.js │ │ │ │ │ ├── equalObjects.js │ │ │ │ │ ├── escapeHtmlChar.js │ │ │ │ │ ├── escapeRegExpChar.js │ │ │ │ │ ├── escapeStringChar.js │ │ │ │ │ ├── getData.js │ │ │ │ │ ├── getFuncName.js │ │ │ │ │ ├── getLength.js │ │ │ │ │ ├── getMatchData.js │ │ │ │ │ ├── getNative.js │ │ │ │ │ ├── getView.js │ │ │ │ │ ├── indexOfNaN.js │ │ │ │ │ ├── initCloneArray.js │ │ │ │ │ ├── initCloneByTag.js │ │ │ │ │ ├── initCloneObject.js │ │ │ │ │ ├── invokePath.js │ │ │ │ │ ├── isArrayLike.js │ │ │ │ │ ├── isIndex.js │ │ │ │ │ ├── isIterateeCall.js │ │ │ │ │ ├── isKey.js │ │ │ │ │ ├── isLaziable.js │ │ │ │ │ ├── isLength.js │ │ │ │ │ ├── isObjectLike.js │ │ │ │ │ ├── isSpace.js │ │ │ │ │ ├── isStrictComparable.js │ │ │ │ │ ├── lazyClone.js │ │ │ │ │ ├── lazyReverse.js │ │ │ │ │ ├── lazyValue.js │ │ │ │ │ ├── mapDelete.js │ │ │ │ │ ├── mapGet.js │ │ │ │ │ ├── mapHas.js │ │ │ │ │ ├── mapSet.js │ │ │ │ │ ├── mergeData.js │ │ │ │ │ ├── mergeDefaults.js │ │ │ │ │ ├── metaMap.js │ │ │ │ │ ├── pickByArray.js │ │ │ │ │ ├── pickByCallback.js │ │ │ │ │ ├── reEscape.js │ │ │ │ │ ├── reEvaluate.js │ │ │ │ │ ├── reInterpolate.js │ │ │ │ │ ├── realNames.js │ │ │ │ │ ├── reorder.js │ │ │ │ │ ├── replaceHolders.js │ │ │ │ │ ├── setData.js │ │ │ │ │ ├── shimKeys.js │ │ │ │ │ ├── sortedUniq.js │ │ │ │ │ ├── toIterable.js │ │ │ │ │ ├── toObject.js │ │ │ │ │ ├── toPath.js │ │ │ │ │ ├── trimmedLeftIndex.js │ │ │ │ │ ├── trimmedRightIndex.js │ │ │ │ │ ├── unescapeHtmlChar.js │ │ │ │ │ └── wrapperClone.js │ │ │ │ ├── lang.js │ │ │ │ ├── lang │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── cloneDeep.js │ │ │ │ │ ├── eq.js │ │ │ │ │ ├── gt.js │ │ │ │ │ ├── gte.js │ │ │ │ │ ├── isArguments.js │ │ │ │ │ ├── isArray.js │ │ │ │ │ ├── isBoolean.js │ │ │ │ │ ├── isDate.js │ │ │ │ │ ├── isElement.js │ │ │ │ │ ├── isEmpty.js │ │ │ │ │ ├── isEqual.js │ │ │ │ │ ├── isError.js │ │ │ │ │ ├── isFinite.js │ │ │ │ │ ├── isFunction.js │ │ │ │ │ ├── isMatch.js │ │ │ │ │ ├── isNaN.js │ │ │ │ │ ├── isNative.js │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── isNumber.js │ │ │ │ │ ├── isObject.js │ │ │ │ │ ├── isPlainObject.js │ │ │ │ │ ├── isRegExp.js │ │ │ │ │ ├── isString.js │ │ │ │ │ ├── isTypedArray.js │ │ │ │ │ ├── isUndefined.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lte.js │ │ │ │ │ ├── toArray.js │ │ │ │ │ └── toPlainObject.js │ │ │ │ ├── math.js │ │ │ │ ├── math │ │ │ │ │ ├── add.js │ │ │ │ │ ├── ceil.js │ │ │ │ │ ├── floor.js │ │ │ │ │ ├── max.js │ │ │ │ │ ├── min.js │ │ │ │ │ ├── round.js │ │ │ │ │ └── sum.js │ │ │ │ ├── number.js │ │ │ │ ├── number │ │ │ │ │ ├── inRange.js │ │ │ │ │ └── random.js │ │ │ │ ├── object.js │ │ │ │ ├── object │ │ │ │ │ ├── assign.js │ │ │ │ │ ├── create.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── defaultsDeep.js │ │ │ │ │ ├── extend.js │ │ │ │ │ ├── findKey.js │ │ │ │ │ ├── findLastKey.js │ │ │ │ │ ├── forIn.js │ │ │ │ │ ├── forInRight.js │ │ │ │ │ ├── forOwn.js │ │ │ │ │ ├── forOwnRight.js │ │ │ │ │ ├── functions.js │ │ │ │ │ ├── get.js │ │ │ │ │ ├── has.js │ │ │ │ │ ├── invert.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── keysIn.js │ │ │ │ │ ├── mapKeys.js │ │ │ │ │ ├── mapValues.js │ │ │ │ │ ├── merge.js │ │ │ │ │ ├── methods.js │ │ │ │ │ ├── omit.js │ │ │ │ │ ├── pairs.js │ │ │ │ │ ├── pick.js │ │ │ │ │ ├── result.js │ │ │ │ │ ├── set.js │ │ │ │ │ ├── transform.js │ │ │ │ │ ├── values.js │ │ │ │ │ └── valuesIn.js │ │ │ │ ├── package.json │ │ │ │ ├── string.js │ │ │ │ ├── string │ │ │ │ │ ├── camelCase.js │ │ │ │ │ ├── capitalize.js │ │ │ │ │ ├── deburr.js │ │ │ │ │ ├── endsWith.js │ │ │ │ │ ├── escape.js │ │ │ │ │ ├── escapeRegExp.js │ │ │ │ │ ├── kebabCase.js │ │ │ │ │ ├── pad.js │ │ │ │ │ ├── padLeft.js │ │ │ │ │ ├── padRight.js │ │ │ │ │ ├── parseInt.js │ │ │ │ │ ├── repeat.js │ │ │ │ │ ├── snakeCase.js │ │ │ │ │ ├── startCase.js │ │ │ │ │ ├── startsWith.js │ │ │ │ │ ├── template.js │ │ │ │ │ ├── templateSettings.js │ │ │ │ │ ├── trim.js │ │ │ │ │ ├── trimLeft.js │ │ │ │ │ ├── trimRight.js │ │ │ │ │ ├── trunc.js │ │ │ │ │ ├── unescape.js │ │ │ │ │ └── words.js │ │ │ │ ├── support.js │ │ │ │ ├── utility.js │ │ │ │ └── utility │ │ │ │ │ ├── attempt.js │ │ │ │ │ ├── callback.js │ │ │ │ │ ├── constant.js │ │ │ │ │ ├── identity.js │ │ │ │ │ ├── iteratee.js │ │ │ │ │ ├── matches.js │ │ │ │ │ ├── matchesProperty.js │ │ │ │ │ ├── method.js │ │ │ │ │ ├── methodOf.js │ │ │ │ │ ├── mixin.js │ │ │ │ │ ├── noop.js │ │ │ │ │ ├── property.js │ │ │ │ │ ├── propertyOf.js │ │ │ │ │ ├── range.js │ │ │ │ │ ├── times.js │ │ │ │ │ └── uniqueId.js │ │ │ ├── minimatch │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── minimatch.js │ │ │ │ └── package.json │ │ │ ├── nopt │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ │ └── nopt.js │ │ │ │ ├── examples │ │ │ │ │ └── my-program.js │ │ │ │ ├── lib │ │ │ │ │ └── nopt.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── basic.js │ │ │ ├── once │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── once.js │ │ │ │ └── package.json │ │ │ ├── os-homedir │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── os-tmpdir │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── osenv │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── osenv.js │ │ │ │ ├── package.json │ │ │ │ ├── test │ │ │ │ │ ├── unix.js │ │ │ │ │ └── windows.js │ │ │ │ └── x.tap │ │ │ ├── path-is-absolute │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── plist │ │ │ │ ├── .jshintrc │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ │ ├── plist-build.js │ │ │ │ │ ├── plist-parse.js │ │ │ │ │ └── plist.js │ │ │ │ ├── examples │ │ │ │ │ └── browser │ │ │ │ │ │ └── index.html │ │ │ │ ├── lib │ │ │ │ │ ├── build.js │ │ │ │ │ ├── node.js │ │ │ │ │ ├── parse.js │ │ │ │ │ └── plist.js │ │ │ │ └── package.json │ │ │ ├── properties-parser │ │ │ │ ├── README.markdown │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ ├── play-ground.js │ │ │ │ ├── properties-parser.iml │ │ │ │ └── test │ │ │ │ │ ├── ReadProperties.class │ │ │ │ │ ├── ReadProperties.java │ │ │ │ │ ├── test-cases-copy.properties │ │ │ │ │ ├── test-cases.properties │ │ │ │ │ └── test.js │ │ │ ├── q │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── q.js │ │ │ │ └── queue.js │ │ │ ├── sax │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── big-not-pretty.xml │ │ │ │ │ ├── example.js │ │ │ │ │ ├── get-products.js │ │ │ │ │ ├── hello-world.js │ │ │ │ │ ├── not-pretty.xml │ │ │ │ │ ├── pretty-print.js │ │ │ │ │ ├── shopping.xml │ │ │ │ │ ├── strict.dtd │ │ │ │ │ ├── switch-bench.js │ │ │ │ │ ├── test.html │ │ │ │ │ └── test.xml │ │ │ │ ├── lib │ │ │ │ │ └── sax.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── buffer-overrun.js │ │ │ │ │ ├── cdata-chunked.js │ │ │ │ │ ├── cdata-end-split.js │ │ │ │ │ ├── cdata-fake-end.js │ │ │ │ │ ├── cdata-multiple.js │ │ │ │ │ ├── cdata.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── issue-23.js │ │ │ │ │ ├── issue-30.js │ │ │ │ │ ├── issue-35.js │ │ │ │ │ ├── issue-47.js │ │ │ │ │ ├── issue-49.js │ │ │ │ │ ├── parser-position.js │ │ │ │ │ ├── script.js │ │ │ │ │ ├── self-closing-child-strict.js │ │ │ │ │ ├── self-closing-child.js │ │ │ │ │ ├── self-closing-tag.js │ │ │ │ │ ├── stray-ending.js │ │ │ │ │ ├── trailing-non-whitespace.js │ │ │ │ │ ├── unquoted.js │ │ │ │ │ ├── xmlns-issue-41.js │ │ │ │ │ ├── xmlns-rebinding.js │ │ │ │ │ ├── xmlns-strict.js │ │ │ │ │ ├── xmlns-unbound.js │ │ │ │ │ ├── xmlns-xml-default-prefix-attribute.js │ │ │ │ │ ├── xmlns-xml-default-prefix.js │ │ │ │ │ └── xmlns-xml-default-redefine.js │ │ │ ├── semver │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ │ └── semver │ │ │ │ ├── package.json │ │ │ │ ├── range.bnf │ │ │ │ ├── semver.js │ │ │ │ └── test │ │ │ │ │ ├── big-numbers.js │ │ │ │ │ ├── clean.js │ │ │ │ │ ├── gtr.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── ltr.js │ │ │ │ │ └── major-minor-patch.js │ │ │ ├── shelljs │ │ │ │ ├── .documentup.json │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── RELEASE.md │ │ │ │ ├── bin │ │ │ │ │ └── shjs │ │ │ │ ├── global.js │ │ │ │ ├── make.js │ │ │ │ ├── package.json │ │ │ │ ├── scripts │ │ │ │ │ ├── generate-docs.js │ │ │ │ │ └── run-tests.js │ │ │ │ ├── shell.js │ │ │ │ └── src │ │ │ │ │ ├── cat.js │ │ │ │ │ ├── cd.js │ │ │ │ │ ├── chmod.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── cp.js │ │ │ │ │ ├── dirs.js │ │ │ │ │ ├── echo.js │ │ │ │ │ ├── error.js │ │ │ │ │ ├── exec.js │ │ │ │ │ ├── find.js │ │ │ │ │ ├── grep.js │ │ │ │ │ ├── ln.js │ │ │ │ │ ├── ls.js │ │ │ │ │ ├── mkdir.js │ │ │ │ │ ├── mv.js │ │ │ │ │ ├── popd.js │ │ │ │ │ ├── pushd.js │ │ │ │ │ ├── pwd.js │ │ │ │ │ ├── rm.js │ │ │ │ │ ├── sed.js │ │ │ │ │ ├── tempdir.js │ │ │ │ │ ├── test.js │ │ │ │ │ ├── to.js │ │ │ │ │ ├── toEnd.js │ │ │ │ │ └── which.js │ │ │ ├── underscore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── underscore-min.js │ │ │ │ ├── underscore-min.map │ │ │ │ └── underscore.js │ │ │ ├── unorm │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── unorm.js │ │ │ │ └── package.json │ │ │ ├── util-deprecate │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── browser.js │ │ │ │ ├── node.js │ │ │ │ └── package.json │ │ │ ├── wrappy │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── test │ │ │ │ │ └── basic.js │ │ │ │ └── wrappy.js │ │ │ ├── xmlbuilder │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ ├── XMLAttribute.js │ │ │ │ │ ├── XMLBuilder.js │ │ │ │ │ ├── XMLCData.js │ │ │ │ │ ├── XMLComment.js │ │ │ │ │ ├── XMLDTDAttList.js │ │ │ │ │ ├── XMLDTDElement.js │ │ │ │ │ ├── XMLDTDEntity.js │ │ │ │ │ ├── XMLDTDNotation.js │ │ │ │ │ ├── XMLDeclaration.js │ │ │ │ │ ├── XMLDocType.js │ │ │ │ │ ├── XMLElement.js │ │ │ │ │ ├── XMLNode.js │ │ │ │ │ ├── XMLProcessingInstruction.js │ │ │ │ │ ├── XMLRaw.js │ │ │ │ │ ├── XMLStringifier.js │ │ │ │ │ ├── XMLText.js │ │ │ │ │ └── index.js │ │ │ │ └── package.json │ │ │ └── xmldom │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── __package__.js │ │ │ │ ├── changelog │ │ │ │ ├── component.json │ │ │ │ ├── dom-parser.js │ │ │ │ ├── dom.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.md │ │ │ │ └── sax.js │ │ ├── run │ │ ├── run.bat │ │ ├── version │ │ └── version.bat │ ├── platform_www │ │ ├── cordova-js-src │ │ │ ├── android │ │ │ │ ├── nativeapiprovider.js │ │ │ │ └── promptbasednativeapi.js │ │ │ ├── exec.js │ │ │ ├── platform.js │ │ │ └── plugin │ │ │ │ └── android │ │ │ │ └── app.js │ │ ├── cordova.js │ │ ├── cordova_plugins.js │ │ └── plugins │ │ │ ├── cordova-plugin-app-update │ │ │ └── www │ │ │ │ └── AppUpdate.js │ │ │ └── cordova-plugin-appversion │ │ │ └── www │ │ │ └── app-version.js │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-land-hdpi │ │ │ └── screen.png │ │ ├── drawable-land-ldpi │ │ │ └── screen.png │ │ ├── drawable-land-mdpi │ │ │ └── screen.png │ │ ├── drawable-land-xhdpi │ │ │ └── screen.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable-port-hdpi │ │ │ └── screen.png │ │ ├── drawable-port-ldpi │ │ │ └── screen.png │ │ ├── drawable-port-mdpi │ │ │ └── screen.png │ │ ├── drawable-port-xhdpi │ │ │ └── screen.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── appupdate_progress.xml │ │ ├── values-en │ │ │ └── appupdate_strings.xml │ │ ├── values-zh │ │ │ └── appupdate_strings.xml │ │ ├── values │ │ │ ├── appupdate_strings.xml │ │ │ └── strings.xml │ │ └── xml │ │ │ └── config.xml │ ├── settings.gradle │ └── src │ │ ├── com │ │ ├── rareloop │ │ │ └── cordova │ │ │ │ └── appversion │ │ │ │ └── RareloopAppVersion.java │ │ └── vaenow │ │ │ ├── .DS_Store │ │ │ └── appupdate │ │ │ └── android │ │ │ ├── CheckAppUpdate.java │ │ │ ├── CheckUpdateThread.java │ │ │ ├── Constants.java │ │ │ ├── DownloadApkThread.java │ │ │ ├── DownloadHandler.java │ │ │ ├── GetRemoteXmlThread.java │ │ │ ├── LICENSE │ │ │ ├── MsgBox.java │ │ │ ├── MsgHelper.java │ │ │ ├── ParseXmlService.java │ │ │ ├── UIValues.java │ │ │ ├── UpdateManager.java │ │ │ ├── Utils.java │ │ │ └── Version.java │ │ ├── io │ │ └── cordova │ │ │ └── hellocordova │ │ │ └── MainActivity.java │ │ └── org │ │ └── apache │ │ └── cordova │ │ └── whitelist │ │ └── WhitelistPlugin.java └── platforms.json ├── plugins ├── android.json ├── cordova-plugin-app-update │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── plugin.xml │ ├── res │ │ ├── img │ │ │ ├── Screenshot_2015-10-31-13-42-13.jpg │ │ │ └── Screenshot_2015-10-31-13-42-19.jpg │ │ ├── layout │ │ │ └── appupdate_progress.xml │ │ ├── values-en │ │ │ └── appupdate_strings.xml │ │ ├── values-zh │ │ │ └── appupdate_strings.xml │ │ ├── values │ │ │ └── appupdate_strings.xml │ │ └── xml │ │ │ └── version.xml │ ├── src │ │ └── android │ │ │ ├── CheckAppUpdate.java │ │ │ ├── CheckUpdateThread.java │ │ │ ├── Constants.java │ │ │ ├── DownloadApkThread.java │ │ │ ├── DownloadHandler.java │ │ │ ├── GetRemoteXmlThread.java │ │ │ ├── LICENSE │ │ │ ├── MsgBox.java │ │ │ ├── MsgHelper.java │ │ │ ├── ParseXmlService.java │ │ │ ├── UIValues.java │ │ │ ├── UpdateManager.java │ │ │ ├── Utils.java │ │ │ └── Version.java │ ├── syncFromDemo.sh │ └── www │ │ └── AppUpdate.js ├── cordova-plugin-appversion │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ └── RareloopAppVersion.java │ │ └── ios │ │ │ ├── RareloopAppVersion.h │ │ │ └── RareloopAppVersion.m │ └── www │ │ └── app-version.js ├── cordova-plugin-whitelist │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ └── README.md │ │ ├── es │ │ │ └── README.md │ │ ├── fr │ │ │ └── README.md │ │ ├── it │ │ │ └── README.md │ │ ├── ja │ │ │ └── README.md │ │ ├── ko │ │ │ └── README.md │ │ ├── pl │ │ │ └── README.md │ │ └── zh │ │ │ └── README.md │ ├── package.json │ ├── plugin.xml │ └── src │ │ ├── android │ │ └── WhitelistPlugin.java │ │ └── cordova-plugin-whitelist.iml └── fetch.json ├── remote_server_apk ├── android-debug-18.apk ├── android-debug-302048.apk └── version.xml └── www ├── css └── index.css ├── img └── logo.png ├── index.html ├── index.html.bak └── js └── index.js /imgs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/imgs/.DS_Store -------------------------------------------------------------------------------- /imgs/屏幕快照 2016-07-13 下午11.49.54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/imgs/屏幕快照 2016-07-13 下午11.49.54.png -------------------------------------------------------------------------------- /imgs/屏幕快照 2016-07-13 下午11.51.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/imgs/屏幕快照 2016-07-13 下午11.51.48.png -------------------------------------------------------------------------------- /imgs/屏幕快照 2016-07-14 上午12.15.44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/imgs/屏幕快照 2016-07-14 上午12.15.44.png -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/AuthenticationToken.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/AuthenticationToken.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/BuildConfig.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CallbackContext.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CallbackContext.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/Config.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/Config.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/ConfigXmlParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/ConfigXmlParser.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaActivity$1.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaActivity$2.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaActivity$3.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaActivity$4$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaActivity$4$1.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaActivity$4.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaActivity.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaArgs.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaArgs.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaBridge.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaBridge.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaClientCertRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaClientCertRequest.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$1.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$2.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$3.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$4.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$5.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$6.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$7.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$8.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$9.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$Result.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper$Result.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaDialogsHelper.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaHttpAuthHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaHttpAuthHandler.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaInterface.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaInterface.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaInterfaceImpl$ActivityResultHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaInterfaceImpl$ActivityResultHolder.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaInterfaceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaInterfaceImpl.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaPlugin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaPlugin.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaPreferences.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaPreferences.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaResourceApi$OpenForReadResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaResourceApi$OpenForReadResult.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaResourceApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaResourceApi.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaWebView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaWebView.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaWebViewEngine$Client.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaWebViewEngine$Client.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaWebViewEngine$EngineView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaWebViewEngine$EngineView.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaWebViewEngine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaWebViewEngine.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$1.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$2.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$3.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$EngineClient$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$EngineClient$1$1.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$EngineClient$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$EngineClient$1.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$EngineClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl$EngineClient.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CordovaWebViewImpl.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CoreAndroid$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CoreAndroid$1.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CoreAndroid$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CoreAndroid$2.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CoreAndroid$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CoreAndroid$3.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CoreAndroid$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CoreAndroid$4.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CoreAndroid$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CoreAndroid$5.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/CoreAndroid.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/CoreAndroid.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/ExposedJsApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/ExposedJsApi.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/ICordovaClientCertRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/ICordovaClientCertRequest.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/ICordovaCookieManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/ICordovaCookieManager.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/ICordovaHttpAuthHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/ICordovaHttpAuthHandler.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/LOG.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/LOG.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$BridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$BridgeMode.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$JsMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$JsMessage.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode$1.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$NoOpBridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$NoOpBridgeMode.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$1.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$2.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$OnlineEventsBridgeModeDelegate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$OnlineEventsBridgeModeDelegate.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/NativeToJsMessageQueue.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/PluginEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/PluginEntry.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/PluginManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/PluginManager.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/PluginResult$Status.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/PluginResult$Status.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/PluginResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/PluginResult.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/ResumeCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/ResumeCallback.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/Whitelist$URLPattern.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/Whitelist$URLPattern.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/Whitelist.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/Whitelist.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemCookieManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemCookieManager.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemExposedJsApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemExposedJsApi.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient$1.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient$2.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient$3.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient$4.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient$5.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemWebChromeClient.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemWebView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemWebView.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemWebViewClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemWebViewClient.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemWebViewEngine$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemWebViewEngine$1.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemWebViewEngine$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemWebViewEngine$2.class -------------------------------------------------------------------------------- /out/production/CordovaLib/org/apache/cordova/engine/SystemWebViewEngine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/CordovaLib/org/apache/cordova/engine/SystemWebViewEngine.class -------------------------------------------------------------------------------- /out/production/android/com/rareloop/cordova/appversion/RareloopAppVersion.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/rareloop/cordova/appversion/RareloopAppVersion.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/CheckAppUpdate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/CheckAppUpdate.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/CheckUpdateThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/CheckUpdateThread.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/Constants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/Constants.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/DownloadApkThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/DownloadApkThread.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/DownloadHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/DownloadHandler.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/GetRemoteXmlThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/GetRemoteXmlThread.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/MsgBox.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/MsgBox.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/ParseXmlService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/ParseXmlService.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/UIValues.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/UIValues.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/UpdateManager$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/UpdateManager$1.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/UpdateManager$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/UpdateManager$2.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/UpdateManager$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/UpdateManager$3.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/UpdateManager$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/UpdateManager$4.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/UpdateManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/UpdateManager.class -------------------------------------------------------------------------------- /out/production/android/com/vaenow/appupdate/android/Version.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/com/vaenow/appupdate/android/Version.class -------------------------------------------------------------------------------- /out/production/android/io/cordova/hellocordova/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/io/cordova/hellocordova/BuildConfig.class -------------------------------------------------------------------------------- /out/production/android/io/cordova/hellocordova/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/io/cordova/hellocordova/MainActivity.class -------------------------------------------------------------------------------- /out/production/android/io/cordova/hellocordova/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/io/cordova/hellocordova/R$attr.class -------------------------------------------------------------------------------- /out/production/android/io/cordova/hellocordova/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/io/cordova/hellocordova/R$drawable.class -------------------------------------------------------------------------------- /out/production/android/io/cordova/hellocordova/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/io/cordova/hellocordova/R$id.class -------------------------------------------------------------------------------- /out/production/android/io/cordova/hellocordova/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/io/cordova/hellocordova/R$layout.class -------------------------------------------------------------------------------- /out/production/android/io/cordova/hellocordova/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/io/cordova/hellocordova/R$string.class -------------------------------------------------------------------------------- /out/production/android/io/cordova/hellocordova/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/io/cordova/hellocordova/R$xml.class -------------------------------------------------------------------------------- /out/production/android/io/cordova/hellocordova/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/io/cordova/hellocordova/R.class -------------------------------------------------------------------------------- /out/production/android/org/apache/cordova/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/org/apache/cordova/BuildConfig.class -------------------------------------------------------------------------------- /out/production/android/org/apache/cordova/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/org/apache/cordova/R$attr.class -------------------------------------------------------------------------------- /out/production/android/org/apache/cordova/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/org/apache/cordova/R$drawable.class -------------------------------------------------------------------------------- /out/production/android/org/apache/cordova/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/org/apache/cordova/R$id.class -------------------------------------------------------------------------------- /out/production/android/org/apache/cordova/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/org/apache/cordova/R$layout.class -------------------------------------------------------------------------------- /out/production/android/org/apache/cordova/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/org/apache/cordova/R$string.class -------------------------------------------------------------------------------- /out/production/android/org/apache/cordova/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/org/apache/cordova/R$xml.class -------------------------------------------------------------------------------- /out/production/android/org/apache/cordova/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/org/apache/cordova/R.class -------------------------------------------------------------------------------- /out/production/android/org/apache/cordova/whitelist/WhitelistPlugin$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/org/apache/cordova/whitelist/WhitelistPlugin$1.class -------------------------------------------------------------------------------- /out/production/android/org/apache/cordova/whitelist/WhitelistPlugin$CustomConfigXmlParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/org/apache/cordova/whitelist/WhitelistPlugin$CustomConfigXmlParser.class -------------------------------------------------------------------------------- /out/production/android/org/apache/cordova/whitelist/WhitelistPlugin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/android/org/apache/cordova/whitelist/WhitelistPlugin.class -------------------------------------------------------------------------------- /out/production/buildConfig/io/cordova/hellocordova/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/buildConfig/io/cordova/hellocordova/BuildConfig.class -------------------------------------------------------------------------------- /out/production/buildConfig1/org/apache/cordova/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/buildConfig1/org/apache/cordova/BuildConfig.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/CheckAppUpdate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/CheckAppUpdate.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/CheckUpdateThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/CheckUpdateThread.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/Constants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/Constants.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/DownloadApkThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/DownloadApkThread.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/DownloadHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/DownloadHandler.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/GetRemoteXmlThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/GetRemoteXmlThread.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/MsgBox.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/MsgBox.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/ParseXmlService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/ParseXmlService.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UIValues.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UIValues.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UpdateManager$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UpdateManager$1.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UpdateManager$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UpdateManager$2.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UpdateManager$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UpdateManager$3.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UpdateManager$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UpdateManager$4.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UpdateManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/UpdateManager.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/Version.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-app-update/com/vaenow/appupdate/android/Version.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-appversion/com/rareloop/cordova/appversion/RareloopAppVersion.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-appversion/com/rareloop/cordova/appversion/RareloopAppVersion.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-whitelist/org/apache/cordova/whitelist/WhitelistPlugin$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-whitelist/org/apache/cordova/whitelist/WhitelistPlugin$1.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-whitelist/org/apache/cordova/whitelist/WhitelistPlugin$CustomConfigXmlParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-whitelist/org/apache/cordova/whitelist/WhitelistPlugin$CustomConfigXmlParser.class -------------------------------------------------------------------------------- /out/production/cordova-plugin-whitelist/org/apache/cordova/whitelist/WhitelistPlugin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/cordova-plugin-whitelist/org/apache/cordova/whitelist/WhitelistPlugin.class -------------------------------------------------------------------------------- /out/production/r/io/cordova/hellocordova/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/r/io/cordova/hellocordova/R$attr.class -------------------------------------------------------------------------------- /out/production/r/io/cordova/hellocordova/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/r/io/cordova/hellocordova/R$drawable.class -------------------------------------------------------------------------------- /out/production/r/io/cordova/hellocordova/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/r/io/cordova/hellocordova/R$id.class -------------------------------------------------------------------------------- /out/production/r/io/cordova/hellocordova/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/r/io/cordova/hellocordova/R$layout.class -------------------------------------------------------------------------------- /out/production/r/io/cordova/hellocordova/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/r/io/cordova/hellocordova/R$string.class -------------------------------------------------------------------------------- /out/production/r/io/cordova/hellocordova/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/r/io/cordova/hellocordova/R$xml.class -------------------------------------------------------------------------------- /out/production/r/io/cordova/hellocordova/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/production/r/io/cordova/hellocordova/R.class -------------------------------------------------------------------------------- /out/test/properties-parser/ReadProperties.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/out/test/properties-parser/ReadProperties.class -------------------------------------------------------------------------------- /out/test/properties-parser/test-cases-copy.properties: -------------------------------------------------------------------------------- 1 | # You are reading the ".properties" entry. 2 | ! The exclamation mark can also mark text as comments. 3 | lala=whatever 4 | website = whatever 5 | language = whatever 6 | # The backslash below tells the application to continue reading 7 | # the value onto the next line. 8 | message = whatever 9 | # Add spaces to the key 10 | key\ with\ spaces = whatever 11 | # Unicode 12 | tab : whatever 13 | long-unicode : whatever 14 | space\ separator key val \n three 15 | another-test :whatever 16 | null-prop -------------------------------------------------------------------------------- /platforms/android/.gitignore: -------------------------------------------------------------------------------- 1 | # Non-project-specific build files: 2 | build.xml 3 | local.properties 4 | /gradlew 5 | /gradlew.bat 6 | /gradle 7 | # Ant builds 8 | ant-build 9 | ant-gen 10 | # Eclipse builds 11 | gen 12 | out 13 | # Gradle builds 14 | /build 15 | -------------------------------------------------------------------------------- /platforms/android/.gradle/2.2.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Jul 22 01:08:57 CST 2016 2 | -------------------------------------------------------------------------------- /platforms/android/.gradle/2.2.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/.gradle/2.2.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /platforms/android/.gradle/2.2.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/.gradle/2.2.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /platforms/android/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /platforms/android/.gradle/2.2.1/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/.gradle/2.2.1/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /platforms/android/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/generated/source/buildConfig/buildConfig1.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/generated/source/buildConfig/debug/org/apache/cordova/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package org.apache.cordova; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "org.apache.cordova"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 1; 12 | public static final String VERSION_NAME = "1.0"; 13 | } 14 | -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/bundles/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/bundles/debug/classes.jar -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/AuthenticationToken.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/AuthenticationToken.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/BuildConfig.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CallbackContext.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CallbackContext.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Config.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Config.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ConfigXmlParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ConfigXmlParser.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$1.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$2.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$3.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$4$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$4$1.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$4.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaArgs.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaArgs.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaBridge.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaBridge.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaClientCertRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaClientCertRequest.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$1.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$2.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$3.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$4.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$5.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$6.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$7.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$8.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$9.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$Result.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$Result.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaHttpAuthHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaHttpAuthHandler.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterface.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterface.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterfaceImpl$ActivityResultHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterfaceImpl$ActivityResultHolder.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterfaceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterfaceImpl.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaPlugin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaPlugin.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaPreferences.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaPreferences.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaResourceApi$OpenForReadResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaResourceApi$OpenForReadResult.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaResourceApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaResourceApi.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebView.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine$Client.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine$Client.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine$EngineView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine$EngineView.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$1.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$2.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$3.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient$1$1.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient$1.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$1.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$2.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$3.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$4.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$5.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ExposedJsApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ExposedJsApi.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaClientCertRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaClientCertRequest.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaCookieManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaCookieManager.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaHttpAuthHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaHttpAuthHandler.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/LOG.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/LOG.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$BridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$BridgeMode.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$JsMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$JsMessage.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode$1.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$NoOpBridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$NoOpBridgeMode.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$1.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$2.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$OnlineEventsBridgeModeDelegate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$OnlineEventsBridgeModeDelegate.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginEntry.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginManager.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginResult$Status.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginResult$Status.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginResult.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ResumeCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ResumeCallback.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Whitelist$URLPattern.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Whitelist$URLPattern.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Whitelist.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Whitelist.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemCookieManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemCookieManager.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemExposedJsApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemExposedJsApi.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$1.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$2.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$3.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$4.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$5.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebView.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewClient.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine$1.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine$2.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine.class -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/incremental/mergeDebugAssets/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /platforms/android/CordovaLib/build/outputs/aar/CordovaLib-debug.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/CordovaLib/build/outputs/aar/CordovaLib-debug.aar -------------------------------------------------------------------------------- /platforms/android/CordovaLib/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Indicates whether an apk should be generated for each density. 11 | split.density=false 12 | # Project target. 13 | target=android-23 14 | apk-configurations= 15 | renderscript.opt.level=O0 16 | android.library=true 17 | -------------------------------------------------------------------------------- /platforms/android/assets/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/assets/www/img/logo.png -------------------------------------------------------------------------------- /platforms/android/assets/www/plugins/cordova-plugin-app-update/www/AppUpdate.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-app-update.AppUpdate", function(require, exports, module) { 2 | var exec = require('cordova/exec'); 3 | 4 | exports.checkAppUpdate = function(success, error, updateUrl) { 5 | updateUrl = updateUrl ? [updateUrl] : []; 6 | exec(success, error, "AppUpdate", "checkAppUpdate", updateUrl); 7 | }; 8 | }); 9 | -------------------------------------------------------------------------------- /platforms/android/cordova/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true 3 | , "bitwise": true 4 | , "undef": true 5 | , "trailing": true 6 | , "quotmark": true 7 | , "indent": 4 8 | , "unused": "vars" 9 | , "latedef": "nofunc" 10 | } 11 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/abbrev/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | nyc_output 3 | node_modules 4 | coverage 5 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/abbrev/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | - '0.12' 5 | - 'iojs' 6 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/abbrev/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | To get started, sign the 3 | Contributor License Agreement. 4 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/abbrev/README.md: -------------------------------------------------------------------------------- 1 | # abbrev-js 2 | 3 | Just like [ruby's Abbrev](http://apidock.com/ruby/Abbrev). 4 | 5 | Usage: 6 | 7 | var abbrev = require("abbrev"); 8 | abbrev("foo", "fool", "folding", "flop"); 9 | 10 | // returns: 11 | { fl: 'flop' 12 | , flo: 'flop' 13 | , flop: 'flop' 14 | , fol: 'folding' 15 | , fold: 'folding' 16 | , foldi: 'folding' 17 | , foldin: 'folding' 18 | , folding: 'folding' 19 | , foo: 'foo' 20 | , fool: 'fool' 21 | } 22 | 23 | This is handy for command-line scripts, or other cases where you want to be able to accept shorthands. 24 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/ansi/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxcomma": true, 3 | "asi": true 4 | } 5 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/ansi/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/ansi/examples/beep/index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Invokes the terminal "beep" sound once per second on every exact second. 5 | */ 6 | 7 | process.title = 'beep' 8 | 9 | var cursor = require('../../')(process.stdout) 10 | 11 | function beep () { 12 | cursor.beep() 13 | setTimeout(beep, 1000 - (new Date()).getMilliseconds()) 14 | } 15 | 16 | setTimeout(beep, 1000 - (new Date()).getMilliseconds()) 17 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/ansi/examples/clear/index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * Like GNU ncurses "clear" command. 5 | * https://github.com/mscdex/node-ncurses/blob/master/deps/ncurses/progs/clear.c 6 | */ 7 | 8 | process.title = 'clear' 9 | 10 | function lf () { return '\n' } 11 | 12 | require('../../')(process.stdout) 13 | .write(Array.apply(null, Array(process.stdout.getWindowSize()[1])).map(lf).join('')) 14 | .eraseData(2) 15 | .goto(1, 1) 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/balanced-match/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/balanced-match/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/balanced-match/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/.bin/tape test/*.js 4 | 5 | .PHONY: test 6 | 7 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/balanced-match/example.js: -------------------------------------------------------------------------------- 1 | var balanced = require('./'); 2 | 3 | console.log(balanced('{', '}', 'pre{in{nested}}post')); 4 | console.log(balanced('{', '}', 'pre{first}between{second}post')); 5 | 6 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/base64-js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.11" -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/base64-js/test/url-safe.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'), 2 | b64 = require('../lib/b64'); 3 | 4 | test('decode url-safe style base64 strings', function (t) { 5 | var expected = [0xff, 0xff, 0xbe, 0xff, 0xef, 0xbf, 0xfb, 0xef, 0xff]; 6 | 7 | var actual = b64.toByteArray('//++/++/++//'); 8 | for (var i = 0; i < actual.length; i++) { 9 | t.equal(actual[i], expected[i]) 10 | } 11 | 12 | actual = b64.toByteArray('__--_--_--__'); 13 | for (var i = 0; i < actual.length; i++) { 14 | t.equal(actual[i], expected[i]) 15 | } 16 | 17 | t.end(); 18 | }); 19 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/bplist-parser/.npmignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | node_modules 3 | *.node 4 | *.sh 5 | *.swp 6 | .lock* 7 | npm-debug.log 8 | .idea 9 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/bplist-parser/test/airplay.bplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/cordova/node_modules/bplist-parser/test/airplay.bplist -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/bplist-parser/test/iTunes-small.bplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/cordova/node_modules/bplist-parser/test/iTunes-small.bplist -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/bplist-parser/test/int64.bplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/cordova/node_modules/bplist-parser/test/int64.bplist -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/bplist-parser/test/int64.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | zero 6 | 0 7 | int64item 8 | 12345678901234567890 9 | 10 | 11 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/bplist-parser/test/sample1.bplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/cordova/node_modules/bplist-parser/test/sample1.bplist -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/bplist-parser/test/sample2.bplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/cordova/node_modules/bplist-parser/test/sample2.bplist -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/bplist-parser/test/uid.bplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/cordova/node_modules/bplist-parser/test/uid.bplist -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/bplist-parser/test/utf16.bplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/cordova/node_modules/bplist-parser/test/utf16.bplist -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/bplist-parser/test/utf16_chinese.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/cordova/node_modules/bplist-parser/test/utf16_chinese.plist -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/brace-expansion/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .gitignore 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/brace-expansion/example.js: -------------------------------------------------------------------------------- 1 | var expand = require('./'); 2 | 3 | console.log(expand('http://any.org/archive{1996..1999}/vol{1..4}/part{a,b,c}.html')); 4 | console.log(expand('http://www.numericals.com/file{1..100..10}.txt')); 5 | console.log(expand('http://www.letters.com/file{a..z..2}.txt')); 6 | console.log(expand('mkdir /usr/local/src/bash/{old,new,dist,bugs}')); 7 | console.log(expand('chown root /usr/{ucb/{ex,edit},lib/{ex?.?*,how_ex}}')); 8 | 9 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/concat-map/example/map.js: -------------------------------------------------------------------------------- 1 | var concatMap = require('../'); 2 | var xs = [ 1, 2, 3, 4, 5, 6 ]; 3 | var ys = concatMap(xs, function (x) { 4 | return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; 5 | }); 6 | console.dir(ys); 7 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/concat-map/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (xs, fn) { 2 | var res = []; 3 | for (var i = 0; i < xs.length; i++) { 4 | var x = fn(xs[i], i); 5 | if (isArray(x)) res.push.apply(res, x); 6 | else res.push(x); 7 | } 8 | return res; 9 | }; 10 | 11 | var isArray = Array.isArray || function (xs) { 12 | return Object.prototype.toString.call(xs) === '[object Array]'; 13 | }; 14 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/cordova-common/.jshintignore: -------------------------------------------------------------------------------- 1 | spec/fixtures/* 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/cordova-common/.npmignore: -------------------------------------------------------------------------------- 1 | spec 2 | coverage 3 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/cordova-common/.ratignore: -------------------------------------------------------------------------------- 1 | fixtures 2 | coverage 3 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/cordova-common/src/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true 3 | , "bitwise": true 4 | , "undef": true 5 | , "trailing": true 6 | , "quotmark": true 7 | , "indent": 4 8 | , "unused": "vars" 9 | , "latedef": "nofunc" 10 | } 11 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/cordova-registry-mapper/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/cordova-registry-mapper/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | node_js: 4 | - "0.10" 5 | install: npm install 6 | script: 7 | - npm test 8 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/cordova-registry-mapper/tests/test.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var oldToNew = require('../index').oldToNew; 3 | var newToOld = require('../index').newToOld; 4 | 5 | test('plugin mappings exist', function(t) { 6 | t.plan(2); 7 | 8 | t.equal('cordova-plugin-device', oldToNew['org.apache.cordova.device']); 9 | 10 | t.equal('org.apache.cordova.device', newToOld['cordova-plugin-device']); 11 | }) 12 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/elementtree/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/elementtree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.6 5 | 6 | script: make test 7 | 8 | notifications: 9 | email: 10 | - tomaz+travisci@tomaz.me 11 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/elementtree/Makefile: -------------------------------------------------------------------------------- 1 | TESTS := \ 2 | tests/test-simple.js 3 | 4 | 5 | 6 | PATH := ./node_modules/.bin:$(PATH) 7 | 8 | WHISKEY := $(shell bash -c 'PATH=$(PATH) type -p whiskey') 9 | 10 | default: test 11 | 12 | test: 13 | NODE_PATH=`pwd`/lib/ ${WHISKEY} --scope-leaks --sequential --real-time --tests "${TESTS}" 14 | 15 | tap: 16 | NODE_PATH=`pwd`/lib/ ${WHISKEY} --test-reporter tap --sequential --real-time --tests "${TESTS}" 17 | 18 | coverage: 19 | NODE_PATH=`pwd`/lib/ ${WHISKEY} --sequential --coverage --coverage-reporter html --coverage-dir coverage_html --tests "${TESTS}" 20 | 21 | .PHONY: default test coverage tap scope 22 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/elementtree/NOTICE: -------------------------------------------------------------------------------- 1 | node-elementtree 2 | Copyright (c) 2011, Rackspace, Inc. 3 | 4 | The ElementTree toolkit is Copyright (c) 1999-2007 by Fredrik Lundh 5 | 6 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/elementtree/lib/parsers/index.js: -------------------------------------------------------------------------------- 1 | exports.sax = require('./sax'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/elementtree/tests/data/xml2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello World 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/inflight/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env" : { 3 | "node" : true 4 | }, 5 | "rules" : { 6 | "semi": [2, "never"], 7 | "strict": 0, 8 | "quotes": [1, "single", "avoid-escape"], 9 | "no-use-before-define": 0, 10 | "curly": 0, 11 | "no-underscore-dangle": 0, 12 | "no-lonely-if": 1, 13 | "no-unused-vars": [2, {"vars" : "all", "args" : "after-used"}], 14 | "no-mixed-requires": 0, 15 | "space-infix-ops": 0 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/inherits/test.js: -------------------------------------------------------------------------------- 1 | var inherits = require('./inherits.js') 2 | var assert = require('assert') 3 | 4 | function test(c) { 5 | assert(c.constructor === Child) 6 | assert(c.constructor.super_ === Parent) 7 | assert(Object.getPrototypeOf(c) === Child.prototype) 8 | assert(Object.getPrototypeOf(Object.getPrototypeOf(c)) === Parent.prototype) 9 | assert(c instanceof Child) 10 | assert(c instanceof Parent) 11 | } 12 | 13 | function Child() { 14 | Parent.call(this) 15 | test(this) 16 | } 17 | 18 | function Parent() {} 19 | 20 | inherits(Child, Parent) 21 | 22 | var c = new Child 23 | test(c) 24 | 25 | console.log('ok') 26 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/array/first.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Gets the first element of `array`. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @alias head 7 | * @category Array 8 | * @param {Array} array The array to query. 9 | * @returns {*} Returns the first element of `array`. 10 | * @example 11 | * 12 | * _.first([1, 2, 3]); 13 | * // => 1 14 | * 15 | * _.first([]); 16 | * // => undefined 17 | */ 18 | function first(array) { 19 | return array ? array[0] : undefined; 20 | } 21 | 22 | module.exports = first; 23 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/array/flattenDeep.js: -------------------------------------------------------------------------------- 1 | var baseFlatten = require('../internal/baseFlatten'); 2 | 3 | /** 4 | * Recursively flattens a nested array. 5 | * 6 | * @static 7 | * @memberOf _ 8 | * @category Array 9 | * @param {Array} array The array to recursively flatten. 10 | * @returns {Array} Returns the new flattened array. 11 | * @example 12 | * 13 | * _.flattenDeep([1, [2, 3, [4]]]); 14 | * // => [1, 2, 3, 4] 15 | */ 16 | function flattenDeep(array) { 17 | var length = array ? array.length : 0; 18 | return length ? baseFlatten(array, true) : []; 19 | } 20 | 21 | module.exports = flattenDeep; 22 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/array/head.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./first'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/array/initial.js: -------------------------------------------------------------------------------- 1 | var dropRight = require('./dropRight'); 2 | 3 | /** 4 | * Gets all but the last element of `array`. 5 | * 6 | * @static 7 | * @memberOf _ 8 | * @category Array 9 | * @param {Array} array The array to query. 10 | * @returns {Array} Returns the slice of `array`. 11 | * @example 12 | * 13 | * _.initial([1, 2, 3]); 14 | * // => [1, 2] 15 | */ 16 | function initial(array) { 17 | return dropRight(array, 1); 18 | } 19 | 20 | module.exports = initial; 21 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/array/last.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Gets the last element of `array`. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @category Array 7 | * @param {Array} array The array to query. 8 | * @returns {*} Returns the last element of `array`. 9 | * @example 10 | * 11 | * _.last([1, 2, 3]); 12 | * // => 3 13 | */ 14 | function last(array) { 15 | var length = array ? array.length : 0; 16 | return length ? array[length - 1] : undefined; 17 | } 18 | 19 | module.exports = last; 20 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/array/object.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./zipObject'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/array/rest.js: -------------------------------------------------------------------------------- 1 | var drop = require('./drop'); 2 | 3 | /** 4 | * Gets all but the first element of `array`. 5 | * 6 | * @static 7 | * @memberOf _ 8 | * @alias tail 9 | * @category Array 10 | * @param {Array} array The array to query. 11 | * @returns {Array} Returns the slice of `array`. 12 | * @example 13 | * 14 | * _.rest([1, 2, 3]); 15 | * // => [2, 3] 16 | */ 17 | function rest(array) { 18 | return drop(array, 1); 19 | } 20 | 21 | module.exports = rest; 22 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/array/tail.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./rest'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/array/unique.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./uniq'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'chain': require('./chain/chain'), 3 | 'commit': require('./chain/commit'), 4 | 'concat': require('./chain/concat'), 5 | 'lodash': require('./chain/lodash'), 6 | 'plant': require('./chain/plant'), 7 | 'reverse': require('./chain/reverse'), 8 | 'run': require('./chain/run'), 9 | 'tap': require('./chain/tap'), 10 | 'thru': require('./chain/thru'), 11 | 'toJSON': require('./chain/toJSON'), 12 | 'toString': require('./chain/toString'), 13 | 'value': require('./chain/value'), 14 | 'valueOf': require('./chain/valueOf'), 15 | 'wrapperChain': require('./chain/wrapperChain') 16 | }; 17 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain/commit.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperCommit'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain/concat.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperConcat'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain/plant.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperPlant'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain/reverse.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperReverse'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain/run.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain/toJSON.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain/toString.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperToString'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain/value.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain/valueOf.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./wrapperValue'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain/wrapperToString.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Produces the result of coercing the unwrapped value to a string. 3 | * 4 | * @name toString 5 | * @memberOf _ 6 | * @category Chain 7 | * @returns {string} Returns the coerced string value. 8 | * @example 9 | * 10 | * _([1, 2, 3]).toString(); 11 | * // => '1,2,3' 12 | */ 13 | function wrapperToString() { 14 | return (this.value() + ''); 15 | } 16 | 17 | module.exports = wrapperToString; 18 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/chain/wrapperValue.js: -------------------------------------------------------------------------------- 1 | var baseWrapperValue = require('../internal/baseWrapperValue'); 2 | 3 | /** 4 | * Executes the chained sequence to extract the unwrapped value. 5 | * 6 | * @name value 7 | * @memberOf _ 8 | * @alias run, toJSON, valueOf 9 | * @category Chain 10 | * @returns {*} Returns the resolved unwrapped value. 11 | * @example 12 | * 13 | * _([1, 2, 3]).value(); 14 | * // => [1, 2, 3] 15 | */ 16 | function wrapperValue() { 17 | return baseWrapperValue(this.__wrapped__, this.__actions__); 18 | } 19 | 20 | module.exports = wrapperValue; 21 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/all.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./every'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/any.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./some'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/collect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./map'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/contains.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./includes'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/detect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./find'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/each.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEach'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/eachRight.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./forEachRight'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/foldl.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./reduce'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/foldr.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./reduceRight'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/include.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./includes'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/inject.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./reduce'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/max.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../math/max'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/min.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../math/min'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/select.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./filter'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/collection/sum.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../math/sum'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/date.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'now': require('./date/now') 3 | }; 4 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/function/backflow.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flowRight'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/function/compose.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./flowRight'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/MapCache.js: -------------------------------------------------------------------------------- 1 | var mapDelete = require('./mapDelete'), 2 | mapGet = require('./mapGet'), 3 | mapHas = require('./mapHas'), 4 | mapSet = require('./mapSet'); 5 | 6 | /** 7 | * Creates a cache object to store key/value pairs. 8 | * 9 | * @private 10 | * @static 11 | * @name Cache 12 | * @memberOf _.memoize 13 | */ 14 | function MapCache() { 15 | this.__data__ = {}; 16 | } 17 | 18 | // Add functions to the `Map` cache. 19 | MapCache.prototype['delete'] = mapDelete; 20 | MapCache.prototype.get = mapGet; 21 | MapCache.prototype.has = mapHas; 22 | MapCache.prototype.set = mapSet; 23 | 24 | module.exports = MapCache; 25 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/arrayCopy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copies the values of `source` to `array`. 3 | * 4 | * @private 5 | * @param {Array} source The array to copy values from. 6 | * @param {Array} [array=[]] The array to copy values to. 7 | * @returns {Array} Returns `array`. 8 | */ 9 | function arrayCopy(source, array) { 10 | var index = -1, 11 | length = source.length; 12 | 13 | array || (array = Array(length)); 14 | while (++index < length) { 15 | array[index] = source[index]; 16 | } 17 | return array; 18 | } 19 | 20 | module.exports = arrayCopy; 21 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/arrayEachRight.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A specialized version of `_.forEachRight` for arrays without support for 3 | * callback shorthands and `this` binding. 4 | * 5 | * @private 6 | * @param {Array} array The array to iterate over. 7 | * @param {Function} iteratee The function invoked per iteration. 8 | * @returns {Array} Returns `array`. 9 | */ 10 | function arrayEachRight(array, iteratee) { 11 | var length = array.length; 12 | 13 | while (length--) { 14 | if (iteratee(array[length], length, array) === false) { 15 | break; 16 | } 17 | } 18 | return array; 19 | } 20 | 21 | module.exports = arrayEachRight; 22 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/arrayPush.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Appends the elements of `values` to `array`. 3 | * 4 | * @private 5 | * @param {Array} array The array to modify. 6 | * @param {Array} values The values to append. 7 | * @returns {Array} Returns `array`. 8 | */ 9 | function arrayPush(array, values) { 10 | var index = -1, 11 | length = values.length, 12 | offset = array.length; 13 | 14 | while (++index < length) { 15 | array[offset + index] = values[index]; 16 | } 17 | return array; 18 | } 19 | 20 | module.exports = arrayPush; 21 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/arraySum.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A specialized version of `_.sum` for arrays without support for callback 3 | * shorthands and `this` binding.. 4 | * 5 | * @private 6 | * @param {Array} array The array to iterate over. 7 | * @param {Function} iteratee The function invoked per iteration. 8 | * @returns {number} Returns the sum. 9 | */ 10 | function arraySum(array, iteratee) { 11 | var length = array.length, 12 | result = 0; 13 | 14 | while (length--) { 15 | result += +iteratee(array[length]) || 0; 16 | } 17 | return result; 18 | } 19 | 20 | module.exports = arraySum; 21 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/assignDefaults.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Used by `_.defaults` to customize its `_.assign` use. 3 | * 4 | * @private 5 | * @param {*} objectValue The destination object property value. 6 | * @param {*} sourceValue The source object property value. 7 | * @returns {*} Returns the value to assign to the destination object. 8 | */ 9 | function assignDefaults(objectValue, sourceValue) { 10 | return objectValue === undefined ? sourceValue : objectValue; 11 | } 12 | 13 | module.exports = assignDefaults; 14 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseAssign.js: -------------------------------------------------------------------------------- 1 | var baseCopy = require('./baseCopy'), 2 | keys = require('../object/keys'); 3 | 4 | /** 5 | * The base implementation of `_.assign` without support for argument juggling, 6 | * multiple sources, and `customizer` functions. 7 | * 8 | * @private 9 | * @param {Object} object The destination object. 10 | * @param {Object} source The source object. 11 | * @returns {Object} Returns `object`. 12 | */ 13 | function baseAssign(object, source) { 14 | return source == null 15 | ? object 16 | : baseCopy(source, keys(source), object); 17 | } 18 | 19 | module.exports = baseAssign; 20 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseEach.js: -------------------------------------------------------------------------------- 1 | var baseForOwn = require('./baseForOwn'), 2 | createBaseEach = require('./createBaseEach'); 3 | 4 | /** 5 | * The base implementation of `_.forEach` without support for callback 6 | * shorthands and `this` binding. 7 | * 8 | * @private 9 | * @param {Array|Object|string} collection The collection to iterate over. 10 | * @param {Function} iteratee The function invoked per iteration. 11 | * @returns {Array|Object|string} Returns `collection`. 12 | */ 13 | var baseEach = createBaseEach(baseForOwn); 14 | 15 | module.exports = baseEach; 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseEachRight.js: -------------------------------------------------------------------------------- 1 | var baseForOwnRight = require('./baseForOwnRight'), 2 | createBaseEach = require('./createBaseEach'); 3 | 4 | /** 5 | * The base implementation of `_.forEachRight` without support for callback 6 | * shorthands and `this` binding. 7 | * 8 | * @private 9 | * @param {Array|Object|string} collection The collection to iterate over. 10 | * @param {Function} iteratee The function invoked per iteration. 11 | * @returns {Array|Object|string} Returns `collection`. 12 | */ 13 | var baseEachRight = createBaseEach(baseForOwnRight, true); 14 | 15 | module.exports = baseEachRight; 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseForIn.js: -------------------------------------------------------------------------------- 1 | var baseFor = require('./baseFor'), 2 | keysIn = require('../object/keysIn'); 3 | 4 | /** 5 | * The base implementation of `_.forIn` without support for callback 6 | * shorthands and `this` binding. 7 | * 8 | * @private 9 | * @param {Object} object The object to iterate over. 10 | * @param {Function} iteratee The function invoked per iteration. 11 | * @returns {Object} Returns `object`. 12 | */ 13 | function baseForIn(object, iteratee) { 14 | return baseFor(object, iteratee, keysIn); 15 | } 16 | 17 | module.exports = baseForIn; 18 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseForOwn.js: -------------------------------------------------------------------------------- 1 | var baseFor = require('./baseFor'), 2 | keys = require('../object/keys'); 3 | 4 | /** 5 | * The base implementation of `_.forOwn` without support for callback 6 | * shorthands and `this` binding. 7 | * 8 | * @private 9 | * @param {Object} object The object to iterate over. 10 | * @param {Function} iteratee The function invoked per iteration. 11 | * @returns {Object} Returns `object`. 12 | */ 13 | function baseForOwn(object, iteratee) { 14 | return baseFor(object, iteratee, keys); 15 | } 16 | 17 | module.exports = baseForOwn; 18 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseForOwnRight.js: -------------------------------------------------------------------------------- 1 | var baseForRight = require('./baseForRight'), 2 | keys = require('../object/keys'); 3 | 4 | /** 5 | * The base implementation of `_.forOwnRight` without support for callback 6 | * shorthands and `this` binding. 7 | * 8 | * @private 9 | * @param {Object} object The object to iterate over. 10 | * @param {Function} iteratee The function invoked per iteration. 11 | * @returns {Object} Returns `object`. 12 | */ 13 | function baseForOwnRight(object, iteratee) { 14 | return baseForRight(object, iteratee, keys); 15 | } 16 | 17 | module.exports = baseForOwnRight; 18 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseForRight.js: -------------------------------------------------------------------------------- 1 | var createBaseFor = require('./createBaseFor'); 2 | 3 | /** 4 | * This function is like `baseFor` except that it iterates over properties 5 | * in the opposite order. 6 | * 7 | * @private 8 | * @param {Object} object The object to iterate over. 9 | * @param {Function} iteratee The function invoked per iteration. 10 | * @param {Function} keysFunc The function to get the keys of `object`. 11 | * @returns {Object} Returns `object`. 12 | */ 13 | var baseForRight = createBaseFor(true); 14 | 15 | module.exports = baseForRight; 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseIsFunction.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The base implementation of `_.isFunction` without support for environments 3 | * with incorrect `typeof` results. 4 | * 5 | * @private 6 | * @param {*} value The value to check. 7 | * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. 8 | */ 9 | function baseIsFunction(value) { 10 | // Avoid a Chakra JIT bug in compatibility modes of IE 11. 11 | // See https://github.com/jashkenas/underscore/issues/1621 for more details. 12 | return typeof value == 'function' || false; 13 | } 14 | 15 | module.exports = baseIsFunction; 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseLodash.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The function whose prototype all chaining wrappers inherit from. 3 | * 4 | * @private 5 | */ 6 | function baseLodash() { 7 | // No operation performed. 8 | } 9 | 10 | module.exports = baseLodash; 11 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseProperty.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The base implementation of `_.property` without support for deep paths. 3 | * 4 | * @private 5 | * @param {string} key The key of the property to get. 6 | * @returns {Function} Returns the new function. 7 | */ 8 | function baseProperty(key) { 9 | return function(object) { 10 | return object == null ? undefined : object[key]; 11 | }; 12 | } 13 | 14 | module.exports = baseProperty; 15 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/basePropertyDeep.js: -------------------------------------------------------------------------------- 1 | var baseGet = require('./baseGet'), 2 | toPath = require('./toPath'); 3 | 4 | /** 5 | * A specialized version of `baseProperty` which supports deep paths. 6 | * 7 | * @private 8 | * @param {Array|string} path The path of the property to get. 9 | * @returns {Function} Returns the new function. 10 | */ 11 | function basePropertyDeep(path) { 12 | var pathKey = (path + ''); 13 | path = toPath(path); 14 | return function(object) { 15 | return baseGet(object, path, pathKey); 16 | }; 17 | } 18 | 19 | module.exports = basePropertyDeep; 20 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseSetData.js: -------------------------------------------------------------------------------- 1 | var identity = require('../utility/identity'), 2 | metaMap = require('./metaMap'); 3 | 4 | /** 5 | * The base implementation of `setData` without support for hot loop detection. 6 | * 7 | * @private 8 | * @param {Function} func The function to associate metadata with. 9 | * @param {*} data The metadata. 10 | * @returns {Function} Returns `func`. 11 | */ 12 | var baseSetData = !metaMap ? identity : function(func, data) { 13 | metaMap.set(func, data); 14 | return func; 15 | }; 16 | 17 | module.exports = baseSetData; 18 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/baseToString.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Converts `value` to a string if it's not one. An empty string is returned 3 | * for `null` or `undefined` values. 4 | * 5 | * @private 6 | * @param {*} value The value to process. 7 | * @returns {string} Returns the string. 8 | */ 9 | function baseToString(value) { 10 | return value == null ? '' : (value + ''); 11 | } 12 | 13 | module.exports = baseToString; 14 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/bufferClone.js: -------------------------------------------------------------------------------- 1 | /** Native method references. */ 2 | var ArrayBuffer = global.ArrayBuffer, 3 | Uint8Array = global.Uint8Array; 4 | 5 | /** 6 | * Creates a clone of the given array buffer. 7 | * 8 | * @private 9 | * @param {ArrayBuffer} buffer The array buffer to clone. 10 | * @returns {ArrayBuffer} Returns the cloned array buffer. 11 | */ 12 | function bufferClone(buffer) { 13 | var result = new ArrayBuffer(buffer.byteLength), 14 | view = new Uint8Array(result); 15 | 16 | view.set(new Uint8Array(buffer)); 17 | return result; 18 | } 19 | 20 | module.exports = bufferClone; 21 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/cachePush.js: -------------------------------------------------------------------------------- 1 | var isObject = require('../lang/isObject'); 2 | 3 | /** 4 | * Adds `value` to the cache. 5 | * 6 | * @private 7 | * @name push 8 | * @memberOf SetCache 9 | * @param {*} value The value to cache. 10 | */ 11 | function cachePush(value) { 12 | var data = this.data; 13 | if (typeof value == 'string' || isObject(value)) { 14 | data.set.add(value); 15 | } else { 16 | data.hash[value] = true; 17 | } 18 | } 19 | 20 | module.exports = cachePush; 21 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/charsLeftIndex.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Used by `_.trim` and `_.trimLeft` to get the index of the first character 3 | * of `string` that is not found in `chars`. 4 | * 5 | * @private 6 | * @param {string} string The string to inspect. 7 | * @param {string} chars The characters to find. 8 | * @returns {number} Returns the index of the first character not found in `chars`. 9 | */ 10 | function charsLeftIndex(string, chars) { 11 | var index = -1, 12 | length = string.length; 13 | 14 | while (++index < length && chars.indexOf(string.charAt(index)) > -1) {} 15 | return index; 16 | } 17 | 18 | module.exports = charsLeftIndex; 19 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/charsRightIndex.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Used by `_.trim` and `_.trimRight` to get the index of the last character 3 | * of `string` that is not found in `chars`. 4 | * 5 | * @private 6 | * @param {string} string The string to inspect. 7 | * @param {string} chars The characters to find. 8 | * @returns {number} Returns the index of the last character not found in `chars`. 9 | */ 10 | function charsRightIndex(string, chars) { 11 | var index = string.length; 12 | 13 | while (index-- && chars.indexOf(string.charAt(index)) > -1) {} 14 | return index; 15 | } 16 | 17 | module.exports = charsRightIndex; 18 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/compareAscending.js: -------------------------------------------------------------------------------- 1 | var baseCompareAscending = require('./baseCompareAscending'); 2 | 3 | /** 4 | * Used by `_.sortBy` to compare transformed elements of a collection and stable 5 | * sort them in ascending order. 6 | * 7 | * @private 8 | * @param {Object} object The object to compare. 9 | * @param {Object} other The other object to compare. 10 | * @returns {number} Returns the sort order indicator for `object`. 11 | */ 12 | function compareAscending(object, other) { 13 | return baseCompareAscending(object.criteria, other.criteria) || (object.index - other.index); 14 | } 15 | 16 | module.exports = compareAscending; 17 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/createFindKey.js: -------------------------------------------------------------------------------- 1 | var baseCallback = require('./baseCallback'), 2 | baseFind = require('./baseFind'); 3 | 4 | /** 5 | * Creates a `_.findKey` or `_.findLastKey` function. 6 | * 7 | * @private 8 | * @param {Function} objectFunc The function to iterate over an object. 9 | * @returns {Function} Returns the new find function. 10 | */ 11 | function createFindKey(objectFunc) { 12 | return function(object, predicate, thisArg) { 13 | predicate = baseCallback(predicate, thisArg, 3); 14 | return baseFind(object, predicate, objectFunc, true); 15 | }; 16 | } 17 | 18 | module.exports = createFindKey; 19 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/createForOwn.js: -------------------------------------------------------------------------------- 1 | var bindCallback = require('./bindCallback'); 2 | 3 | /** 4 | * Creates a function for `_.forOwn` or `_.forOwnRight`. 5 | * 6 | * @private 7 | * @param {Function} objectFunc The function to iterate over an object. 8 | * @returns {Function} Returns the new each function. 9 | */ 10 | function createForOwn(objectFunc) { 11 | return function(object, iteratee, thisArg) { 12 | if (typeof iteratee != 'function' || thisArg !== undefined) { 13 | iteratee = bindCallback(iteratee, thisArg, 3); 14 | } 15 | return objectFunc(object, iteratee); 16 | }; 17 | } 18 | 19 | module.exports = createForOwn; 20 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/createPadDir.js: -------------------------------------------------------------------------------- 1 | var baseToString = require('./baseToString'), 2 | createPadding = require('./createPadding'); 3 | 4 | /** 5 | * Creates a function for `_.padLeft` or `_.padRight`. 6 | * 7 | * @private 8 | * @param {boolean} [fromRight] Specify padding from the right. 9 | * @returns {Function} Returns the new pad function. 10 | */ 11 | function createPadDir(fromRight) { 12 | return function(string, length, chars) { 13 | string = baseToString(string); 14 | return (fromRight ? string : '') + createPadding(string, length, chars) + (fromRight ? '' : string); 15 | }; 16 | } 17 | 18 | module.exports = createPadDir; 19 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/escapeHtmlChar.js: -------------------------------------------------------------------------------- 1 | /** Used to map characters to HTML entities. */ 2 | var htmlEscapes = { 3 | '&': '&', 4 | '<': '<', 5 | '>': '>', 6 | '"': '"', 7 | "'": ''', 8 | '`': '`' 9 | }; 10 | 11 | /** 12 | * Used by `_.escape` to convert characters to HTML entities. 13 | * 14 | * @private 15 | * @param {string} chr The matched character to escape. 16 | * @returns {string} Returns the escaped character. 17 | */ 18 | function escapeHtmlChar(chr) { 19 | return htmlEscapes[chr]; 20 | } 21 | 22 | module.exports = escapeHtmlChar; 23 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/escapeStringChar.js: -------------------------------------------------------------------------------- 1 | /** Used to escape characters for inclusion in compiled string literals. */ 2 | var stringEscapes = { 3 | '\\': '\\', 4 | "'": "'", 5 | '\n': 'n', 6 | '\r': 'r', 7 | '\u2028': 'u2028', 8 | '\u2029': 'u2029' 9 | }; 10 | 11 | /** 12 | * Used by `_.template` to escape characters for inclusion in compiled string literals. 13 | * 14 | * @private 15 | * @param {string} chr The matched character to escape. 16 | * @returns {string} Returns the escaped character. 17 | */ 18 | function escapeStringChar(chr) { 19 | return '\\' + stringEscapes[chr]; 20 | } 21 | 22 | module.exports = escapeStringChar; 23 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/getData.js: -------------------------------------------------------------------------------- 1 | var metaMap = require('./metaMap'), 2 | noop = require('../utility/noop'); 3 | 4 | /** 5 | * Gets metadata for `func`. 6 | * 7 | * @private 8 | * @param {Function} func The function to query. 9 | * @returns {*} Returns the metadata for `func`. 10 | */ 11 | var getData = !metaMap ? noop : function(func) { 12 | return metaMap.get(func); 13 | }; 14 | 15 | module.exports = getData; 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/getLength.js: -------------------------------------------------------------------------------- 1 | var baseProperty = require('./baseProperty'); 2 | 3 | /** 4 | * Gets the "length" property value of `object`. 5 | * 6 | * **Note:** This function is used to avoid a [JIT bug](https://bugs.webkit.org/show_bug.cgi?id=142792) 7 | * that affects Safari on at least iOS 8.1-8.3 ARM64. 8 | * 9 | * @private 10 | * @param {Object} object The object to query. 11 | * @returns {*} Returns the "length" value. 12 | */ 13 | var getLength = baseProperty('length'); 14 | 15 | module.exports = getLength; 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/getMatchData.js: -------------------------------------------------------------------------------- 1 | var isStrictComparable = require('./isStrictComparable'), 2 | pairs = require('../object/pairs'); 3 | 4 | /** 5 | * Gets the propery names, values, and compare flags of `object`. 6 | * 7 | * @private 8 | * @param {Object} object The object to query. 9 | * @returns {Array} Returns the match data of `object`. 10 | */ 11 | function getMatchData(object) { 12 | var result = pairs(object), 13 | length = result.length; 14 | 15 | while (length--) { 16 | result[length][2] = isStrictComparable(result[length][1]); 17 | } 18 | return result; 19 | } 20 | 21 | module.exports = getMatchData; 22 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/getNative.js: -------------------------------------------------------------------------------- 1 | var isNative = require('../lang/isNative'); 2 | 3 | /** 4 | * Gets the native function at `key` of `object`. 5 | * 6 | * @private 7 | * @param {Object} object The object to query. 8 | * @param {string} key The key of the method to get. 9 | * @returns {*} Returns the function if it's native, else `undefined`. 10 | */ 11 | function getNative(object, key) { 12 | var value = object == null ? undefined : object[key]; 13 | return isNative(value) ? value : undefined; 14 | } 15 | 16 | module.exports = getNative; 17 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/initCloneObject.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Initializes an object clone. 3 | * 4 | * @private 5 | * @param {Object} object The object to clone. 6 | * @returns {Object} Returns the initialized clone. 7 | */ 8 | function initCloneObject(object) { 9 | var Ctor = object.constructor; 10 | if (!(typeof Ctor == 'function' && Ctor instanceof Ctor)) { 11 | Ctor = Object; 12 | } 13 | return new Ctor; 14 | } 15 | 16 | module.exports = initCloneObject; 17 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/isArrayLike.js: -------------------------------------------------------------------------------- 1 | var getLength = require('./getLength'), 2 | isLength = require('./isLength'); 3 | 4 | /** 5 | * Checks if `value` is array-like. 6 | * 7 | * @private 8 | * @param {*} value The value to check. 9 | * @returns {boolean} Returns `true` if `value` is array-like, else `false`. 10 | */ 11 | function isArrayLike(value) { 12 | return value != null && isLength(getLength(value)); 13 | } 14 | 15 | module.exports = isArrayLike; 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/isObjectLike.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Checks if `value` is object-like. 3 | * 4 | * @private 5 | * @param {*} value The value to check. 6 | * @returns {boolean} Returns `true` if `value` is object-like, else `false`. 7 | */ 8 | function isObjectLike(value) { 9 | return !!value && typeof value == 'object'; 10 | } 11 | 12 | module.exports = isObjectLike; 13 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/isStrictComparable.js: -------------------------------------------------------------------------------- 1 | var isObject = require('../lang/isObject'); 2 | 3 | /** 4 | * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. 5 | * 6 | * @private 7 | * @param {*} value The value to check. 8 | * @returns {boolean} Returns `true` if `value` if suitable for strict 9 | * equality comparisons, else `false`. 10 | */ 11 | function isStrictComparable(value) { 12 | return value === value && !isObject(value); 13 | } 14 | 15 | module.exports = isStrictComparable; 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/lazyReverse.js: -------------------------------------------------------------------------------- 1 | var LazyWrapper = require('./LazyWrapper'); 2 | 3 | /** 4 | * Reverses the direction of lazy iteration. 5 | * 6 | * @private 7 | * @name reverse 8 | * @memberOf LazyWrapper 9 | * @returns {Object} Returns the new reversed `LazyWrapper` object. 10 | */ 11 | function lazyReverse() { 12 | if (this.__filtered__) { 13 | var result = new LazyWrapper(this); 14 | result.__dir__ = -1; 15 | result.__filtered__ = true; 16 | } else { 17 | result = this.clone(); 18 | result.__dir__ *= -1; 19 | } 20 | return result; 21 | } 22 | 23 | module.exports = lazyReverse; 24 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/mapDelete.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Removes `key` and its value from the cache. 3 | * 4 | * @private 5 | * @name delete 6 | * @memberOf _.memoize.Cache 7 | * @param {string} key The key of the value to remove. 8 | * @returns {boolean} Returns `true` if the entry was removed successfully, else `false`. 9 | */ 10 | function mapDelete(key) { 11 | return this.has(key) && delete this.__data__[key]; 12 | } 13 | 14 | module.exports = mapDelete; 15 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/mapGet.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Gets the cached value for `key`. 3 | * 4 | * @private 5 | * @name get 6 | * @memberOf _.memoize.Cache 7 | * @param {string} key The key of the value to get. 8 | * @returns {*} Returns the cached value. 9 | */ 10 | function mapGet(key) { 11 | return key == '__proto__' ? undefined : this.__data__[key]; 12 | } 13 | 14 | module.exports = mapGet; 15 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/mapSet.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sets `value` to `key` of the cache. 3 | * 4 | * @private 5 | * @name set 6 | * @memberOf _.memoize.Cache 7 | * @param {string} key The key of the value to cache. 8 | * @param {*} value The value to cache. 9 | * @returns {Object} Returns the cache object. 10 | */ 11 | function mapSet(key, value) { 12 | if (key != '__proto__') { 13 | this.__data__[key] = value; 14 | } 15 | return this; 16 | } 17 | 18 | module.exports = mapSet; 19 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/mergeDefaults.js: -------------------------------------------------------------------------------- 1 | var merge = require('../object/merge'); 2 | 3 | /** 4 | * Used by `_.defaultsDeep` to customize its `_.merge` use. 5 | * 6 | * @private 7 | * @param {*} objectValue The destination object property value. 8 | * @param {*} sourceValue The source object property value. 9 | * @returns {*} Returns the value to assign to the destination object. 10 | */ 11 | function mergeDefaults(objectValue, sourceValue) { 12 | return objectValue === undefined ? sourceValue : merge(objectValue, sourceValue, mergeDefaults); 13 | } 14 | 15 | module.exports = mergeDefaults; 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/metaMap.js: -------------------------------------------------------------------------------- 1 | var getNative = require('./getNative'); 2 | 3 | /** Native method references. */ 4 | var WeakMap = getNative(global, 'WeakMap'); 5 | 6 | /** Used to store function metadata. */ 7 | var metaMap = WeakMap && new WeakMap; 8 | 9 | module.exports = metaMap; 10 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/reEscape.js: -------------------------------------------------------------------------------- 1 | /** Used to match template delimiters. */ 2 | var reEscape = /<%-([\s\S]+?)%>/g; 3 | 4 | module.exports = reEscape; 5 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/reEvaluate.js: -------------------------------------------------------------------------------- 1 | /** Used to match template delimiters. */ 2 | var reEvaluate = /<%([\s\S]+?)%>/g; 3 | 4 | module.exports = reEvaluate; 5 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/reInterpolate.js: -------------------------------------------------------------------------------- 1 | /** Used to match template delimiters. */ 2 | var reInterpolate = /<%=([\s\S]+?)%>/g; 3 | 4 | module.exports = reInterpolate; 5 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/realNames.js: -------------------------------------------------------------------------------- 1 | /** Used to lookup unminified function names. */ 2 | var realNames = {}; 3 | 4 | module.exports = realNames; 5 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/toObject.js: -------------------------------------------------------------------------------- 1 | var isObject = require('../lang/isObject'); 2 | 3 | /** 4 | * Converts `value` to an object if it's not one. 5 | * 6 | * @private 7 | * @param {*} value The value to process. 8 | * @returns {Object} Returns the object. 9 | */ 10 | function toObject(value) { 11 | return isObject(value) ? value : Object(value); 12 | } 13 | 14 | module.exports = toObject; 15 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/trimmedLeftIndex.js: -------------------------------------------------------------------------------- 1 | var isSpace = require('./isSpace'); 2 | 3 | /** 4 | * Used by `_.trim` and `_.trimLeft` to get the index of the first non-whitespace 5 | * character of `string`. 6 | * 7 | * @private 8 | * @param {string} string The string to inspect. 9 | * @returns {number} Returns the index of the first non-whitespace character. 10 | */ 11 | function trimmedLeftIndex(string) { 12 | var index = -1, 13 | length = string.length; 14 | 15 | while (++index < length && isSpace(string.charCodeAt(index))) {} 16 | return index; 17 | } 18 | 19 | module.exports = trimmedLeftIndex; 20 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/trimmedRightIndex.js: -------------------------------------------------------------------------------- 1 | var isSpace = require('./isSpace'); 2 | 3 | /** 4 | * Used by `_.trim` and `_.trimRight` to get the index of the last non-whitespace 5 | * character of `string`. 6 | * 7 | * @private 8 | * @param {string} string The string to inspect. 9 | * @returns {number} Returns the index of the last non-whitespace character. 10 | */ 11 | function trimmedRightIndex(string) { 12 | var index = string.length; 13 | 14 | while (index-- && isSpace(string.charCodeAt(index))) {} 15 | return index; 16 | } 17 | 18 | module.exports = trimmedRightIndex; 19 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/unescapeHtmlChar.js: -------------------------------------------------------------------------------- 1 | /** Used to map HTML entities to characters. */ 2 | var htmlUnescapes = { 3 | '&': '&', 4 | '<': '<', 5 | '>': '>', 6 | '"': '"', 7 | ''': "'", 8 | '`': '`' 9 | }; 10 | 11 | /** 12 | * Used by `_.unescape` to convert HTML entities to characters. 13 | * 14 | * @private 15 | * @param {string} chr The matched character to unescape. 16 | * @returns {string} Returns the unescaped character. 17 | */ 18 | function unescapeHtmlChar(chr) { 19 | return htmlUnescapes[chr]; 20 | } 21 | 22 | module.exports = unescapeHtmlChar; 23 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/internal/wrapperClone.js: -------------------------------------------------------------------------------- 1 | var LazyWrapper = require('./LazyWrapper'), 2 | LodashWrapper = require('./LodashWrapper'), 3 | arrayCopy = require('./arrayCopy'); 4 | 5 | /** 6 | * Creates a clone of `wrapper`. 7 | * 8 | * @private 9 | * @param {Object} wrapper The wrapper to clone. 10 | * @returns {Object} Returns the cloned wrapper. 11 | */ 12 | function wrapperClone(wrapper) { 13 | return wrapper instanceof LazyWrapper 14 | ? wrapper.clone() 15 | : new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__, arrayCopy(wrapper.__actions__)); 16 | } 17 | 18 | module.exports = wrapperClone; 19 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/lang/eq.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./isEqual'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/lang/gt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Checks if `value` is greater than `other`. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @category Lang 7 | * @param {*} value The value to compare. 8 | * @param {*} other The other value to compare. 9 | * @returns {boolean} Returns `true` if `value` is greater than `other`, else `false`. 10 | * @example 11 | * 12 | * _.gt(3, 1); 13 | * // => true 14 | * 15 | * _.gt(3, 3); 16 | * // => false 17 | * 18 | * _.gt(1, 3); 19 | * // => false 20 | */ 21 | function gt(value, other) { 22 | return value > other; 23 | } 24 | 25 | module.exports = gt; 26 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/lang/gte.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Checks if `value` is greater than or equal to `other`. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @category Lang 7 | * @param {*} value The value to compare. 8 | * @param {*} other The other value to compare. 9 | * @returns {boolean} Returns `true` if `value` is greater than or equal to `other`, else `false`. 10 | * @example 11 | * 12 | * _.gte(3, 1); 13 | * // => true 14 | * 15 | * _.gte(3, 3); 16 | * // => true 17 | * 18 | * _.gte(1, 3); 19 | * // => false 20 | */ 21 | function gte(value, other) { 22 | return value >= other; 23 | } 24 | 25 | module.exports = gte; 26 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/lang/isNull.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Checks if `value` is `null`. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @category Lang 7 | * @param {*} value The value to check. 8 | * @returns {boolean} Returns `true` if `value` is `null`, else `false`. 9 | * @example 10 | * 11 | * _.isNull(null); 12 | * // => true 13 | * 14 | * _.isNull(void 0); 15 | * // => false 16 | */ 17 | function isNull(value) { 18 | return value === null; 19 | } 20 | 21 | module.exports = isNull; 22 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/lang/isUndefined.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Checks if `value` is `undefined`. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @category Lang 7 | * @param {*} value The value to check. 8 | * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. 9 | * @example 10 | * 11 | * _.isUndefined(void 0); 12 | * // => true 13 | * 14 | * _.isUndefined(null); 15 | * // => false 16 | */ 17 | function isUndefined(value) { 18 | return value === undefined; 19 | } 20 | 21 | module.exports = isUndefined; 22 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/lang/lt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Checks if `value` is less than `other`. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @category Lang 7 | * @param {*} value The value to compare. 8 | * @param {*} other The other value to compare. 9 | * @returns {boolean} Returns `true` if `value` is less than `other`, else `false`. 10 | * @example 11 | * 12 | * _.lt(1, 3); 13 | * // => true 14 | * 15 | * _.lt(3, 3); 16 | * // => false 17 | * 18 | * _.lt(3, 1); 19 | * // => false 20 | */ 21 | function lt(value, other) { 22 | return value < other; 23 | } 24 | 25 | module.exports = lt; 26 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/lang/lte.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Checks if `value` is less than or equal to `other`. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @category Lang 7 | * @param {*} value The value to compare. 8 | * @param {*} other The other value to compare. 9 | * @returns {boolean} Returns `true` if `value` is less than or equal to `other`, else `false`. 10 | * @example 11 | * 12 | * _.lte(1, 3); 13 | * // => true 14 | * 15 | * _.lte(3, 3); 16 | * // => true 17 | * 18 | * _.lte(3, 1); 19 | * // => false 20 | */ 21 | function lte(value, other) { 22 | return value <= other; 23 | } 24 | 25 | module.exports = lte; 26 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/math.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'add': require('./math/add'), 3 | 'ceil': require('./math/ceil'), 4 | 'floor': require('./math/floor'), 5 | 'max': require('./math/max'), 6 | 'min': require('./math/min'), 7 | 'round': require('./math/round'), 8 | 'sum': require('./math/sum') 9 | }; 10 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/math/add.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Adds two numbers. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @category Math 7 | * @param {number} augend The first number to add. 8 | * @param {number} addend The second number to add. 9 | * @returns {number} Returns the sum. 10 | * @example 11 | * 12 | * _.add(6, 4); 13 | * // => 10 14 | */ 15 | function add(augend, addend) { 16 | return (+augend || 0) + (+addend || 0); 17 | } 18 | 19 | module.exports = add; 20 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/math/ceil.js: -------------------------------------------------------------------------------- 1 | var createRound = require('../internal/createRound'); 2 | 3 | /** 4 | * Calculates `n` rounded up to `precision`. 5 | * 6 | * @static 7 | * @memberOf _ 8 | * @category Math 9 | * @param {number} n The number to round up. 10 | * @param {number} [precision=0] The precision to round up to. 11 | * @returns {number} Returns the rounded up number. 12 | * @example 13 | * 14 | * _.ceil(4.006); 15 | * // => 5 16 | * 17 | * _.ceil(6.004, 2); 18 | * // => 6.01 19 | * 20 | * _.ceil(6040, -2); 21 | * // => 6100 22 | */ 23 | var ceil = createRound('ceil'); 24 | 25 | module.exports = ceil; 26 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/math/floor.js: -------------------------------------------------------------------------------- 1 | var createRound = require('../internal/createRound'); 2 | 3 | /** 4 | * Calculates `n` rounded down to `precision`. 5 | * 6 | * @static 7 | * @memberOf _ 8 | * @category Math 9 | * @param {number} n The number to round down. 10 | * @param {number} [precision=0] The precision to round down to. 11 | * @returns {number} Returns the rounded down number. 12 | * @example 13 | * 14 | * _.floor(4.006); 15 | * // => 4 16 | * 17 | * _.floor(0.046, 2); 18 | * // => 0.04 19 | * 20 | * _.floor(4060, -2); 21 | * // => 4000 22 | */ 23 | var floor = createRound('floor'); 24 | 25 | module.exports = floor; 26 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/math/round.js: -------------------------------------------------------------------------------- 1 | var createRound = require('../internal/createRound'); 2 | 3 | /** 4 | * Calculates `n` rounded to `precision`. 5 | * 6 | * @static 7 | * @memberOf _ 8 | * @category Math 9 | * @param {number} n The number to round. 10 | * @param {number} [precision=0] The precision to round to. 11 | * @returns {number} Returns the rounded number. 12 | * @example 13 | * 14 | * _.round(4.006); 15 | * // => 4 16 | * 17 | * _.round(4.006, 2); 18 | * // => 4.01 19 | * 20 | * _.round(4060, -2); 21 | * // => 4100 22 | */ 23 | var round = createRound('round'); 24 | 25 | module.exports = round; 26 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/number.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 'inRange': require('./number/inRange'), 3 | 'random': require('./number/random') 4 | }; 5 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/object/extend.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./assign'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/object/methods.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./functions'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/string/capitalize.js: -------------------------------------------------------------------------------- 1 | var baseToString = require('../internal/baseToString'); 2 | 3 | /** 4 | * Capitalizes the first character of `string`. 5 | * 6 | * @static 7 | * @memberOf _ 8 | * @category String 9 | * @param {string} [string=''] The string to capitalize. 10 | * @returns {string} Returns the capitalized string. 11 | * @example 12 | * 13 | * _.capitalize('fred'); 14 | * // => 'Fred' 15 | */ 16 | function capitalize(string) { 17 | string = baseToString(string); 18 | return string && (string.charAt(0).toUpperCase() + string.slice(1)); 19 | } 20 | 21 | module.exports = capitalize; 22 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/support.js: -------------------------------------------------------------------------------- 1 | /** 2 | * An object environment feature flags. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @type Object 7 | */ 8 | var support = {}; 9 | 10 | module.exports = support; 11 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/utility/constant.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Creates a function that returns `value`. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @category Utility 7 | * @param {*} value The value to return from the new function. 8 | * @returns {Function} Returns the new function. 9 | * @example 10 | * 11 | * var object = { 'user': 'fred' }; 12 | * var getter = _.constant(object); 13 | * 14 | * getter() === object; 15 | * // => true 16 | */ 17 | function constant(value) { 18 | return function() { 19 | return value; 20 | }; 21 | } 22 | 23 | module.exports = constant; 24 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/utility/identity.js: -------------------------------------------------------------------------------- 1 | /** 2 | * This method returns the first argument provided to it. 3 | * 4 | * @static 5 | * @memberOf _ 6 | * @category Utility 7 | * @param {*} value Any value. 8 | * @returns {*} Returns `value`. 9 | * @example 10 | * 11 | * var object = { 'user': 'fred' }; 12 | * 13 | * _.identity(object) === object; 14 | * // => true 15 | */ 16 | function identity(value) { 17 | return value; 18 | } 19 | 20 | module.exports = identity; 21 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/utility/iteratee.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./callback'); 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/lodash/utility/noop.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A no-operation function that returns `undefined` regardless of the 3 | * arguments it receives. 4 | * 5 | * @static 6 | * @memberOf _ 7 | * @category Utility 8 | * @example 9 | * 10 | * var object = { 'user': 'fred' }; 11 | * 12 | * _.noop(object) === undefined; 13 | * // => true 14 | */ 15 | function noop() { 16 | // No operation performed. 17 | } 18 | 19 | module.exports = noop; 20 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/nopt/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | language: node_js 3 | node_js: 4 | - '0.8' 5 | - '0.10' 6 | - '0.12' 7 | - 'iojs' 8 | before_install: 9 | - npm install -g npm@latest 10 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/once/once.js: -------------------------------------------------------------------------------- 1 | var wrappy = require('wrappy') 2 | module.exports = wrappy(once) 3 | 4 | once.proto = once(function () { 5 | Object.defineProperty(Function.prototype, 'once', { 6 | value: function () { 7 | return once(this) 8 | }, 9 | configurable: true 10 | }) 11 | }) 12 | 13 | function once (fn) { 14 | var f = function () { 15 | if (f.called) return f.value 16 | f.called = true 17 | return f.value = fn.apply(this, arguments) 18 | } 19 | f.called = false 20 | return f 21 | } 22 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/osenv/.npmignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .*.swp 3 | 4 | .DS_Store 5 | *~ 6 | .project 7 | .settings 8 | npm-debug.log 9 | coverage.html 10 | .idea 11 | lib-cov 12 | 13 | node_modules 14 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/osenv/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | language: node_js 3 | node_js: 4 | - '0.8' 5 | - '0.10' 6 | - '0.12' 7 | - 'iojs' 8 | before_install: 9 | - npm install -g npm@latest 10 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/plist/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true, 3 | "laxcomma": true 4 | } 5 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/plist/examples/browser/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | plist.js browser example 5 | 6 | 7 | 8 | 9 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/plist/lib/plist.js: -------------------------------------------------------------------------------- 1 | 2 | var i; 3 | 4 | /** 5 | * Parser functions. 6 | */ 7 | 8 | var parserFunctions = require('./parse'); 9 | for (i in parserFunctions) exports[i] = parserFunctions[i]; 10 | 11 | /** 12 | * Builder functions. 13 | */ 14 | 15 | var builderFunctions = require('./build'); 16 | for (i in builderFunctions) exports[i] = builderFunctions[i]; 17 | 18 | /** 19 | * Add Node.js-specific functions (they're deprecated…). 20 | */ 21 | 22 | var nodeFunctions = require('./node'); 23 | for (i in nodeFunctions) exports[i] = nodeFunctions[i]; 24 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/properties-parser/play-ground.js: -------------------------------------------------------------------------------- 1 | var parser = require("./"); 2 | var editor = parser.createEditor(); 3 | 4 | editor.set("ok", "hi"); 5 | editor.set("hi", "ok"); 6 | 7 | console.log(editor.toString()); 8 | 9 | editor.unset("hi"); 10 | 11 | console.log("==================="); 12 | console.log(editor.toString()); 13 | 14 | editor.unset("ok"); 15 | 16 | console.log("==================="); 17 | console.log(editor.toString()); 18 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/properties-parser/properties-parser.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/properties-parser/test/ReadProperties.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/cordova/node_modules/properties-parser/test/ReadProperties.class -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/properties-parser/test/test-cases-copy.properties: -------------------------------------------------------------------------------- 1 | # You are reading the ".properties" entry. 2 | ! The exclamation mark can also mark text as comments. 3 | lala=whatever 4 | website = whatever 5 | language = whatever 6 | # The backslash below tells the application to continue reading 7 | # the value onto the next line. 8 | message = whatever 9 | # Add spaces to the key 10 | key\ with\ spaces = whatever 11 | # Unicode 12 | tab : whatever 13 | long-unicode : whatever 14 | space\ separator key val \n three 15 | another-test :whatever 16 | null-prop -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/AUTHORS: -------------------------------------------------------------------------------- 1 | # contributors sorted by whether or not they're me. 2 | Isaac Z. Schlueter 3 | Stein Martin Hustad 4 | Mikeal Rogers 5 | Laurie Harper 6 | Jann Horn 7 | Elijah Insua 8 | Henry Rawas 9 | Justin Makeig 10 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/examples/hello-world.js: -------------------------------------------------------------------------------- 1 | require("http").createServer(function (req, res) { 2 | res.writeHead(200, {"content-type":"application/json"}) 3 | res.end(JSON.stringify({ok: true})) 4 | }).listen(1337) 5 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/examples/not-pretty.xml: -------------------------------------------------------------------------------- 1 | 2 | something blerm a bit down here 9 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/examples/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | testing the parser 6 | 7 | 8 | 9 |

hello 10 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/test/cdata-chunked.js: -------------------------------------------------------------------------------- 1 | 2 | require(__dirname).test({ 3 | expect : [ 4 | ["opentag", {"name": "R","attributes": {}}], 5 | ["opencdata", undefined], 6 | ["cdata", " this is character data  "], 7 | ["closecdata", undefined], 8 | ["closetag", "R"] 9 | ] 10 | }).write("").close(); 11 | 12 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/test/cdata-end-split.js: -------------------------------------------------------------------------------- 1 | 2 | require(__dirname).test({ 3 | expect : [ 4 | ["opentag", {"name": "R","attributes": {}}], 5 | ["opencdata", undefined], 6 | ["cdata", " this is "], 7 | ["closecdata", undefined], 8 | ["closetag", "R"] 9 | ] 10 | }) 11 | .write("") 13 | .write("") 14 | .close(); 15 | 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/test/cdata-multiple.js: -------------------------------------------------------------------------------- 1 | 2 | require(__dirname).test({ 3 | expect : [ 4 | ["opentag", {"name": "R","attributes": {}}], 5 | ["opencdata", undefined], 6 | ["cdata", " this is "], 7 | ["closecdata", undefined], 8 | ["opencdata", undefined], 9 | ["cdata", "character data  "], 10 | ["closecdata", undefined], 11 | ["closetag", "R"] 12 | ] 13 | }).write("").write("").close(); 15 | 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/test/cdata.js: -------------------------------------------------------------------------------- 1 | require(__dirname).test({ 2 | xml : "", 3 | expect : [ 4 | ["opentag", {"name": "R","attributes": {}}], 5 | ["opencdata", undefined], 6 | ["cdata", " this is character data  "], 7 | ["closecdata", undefined], 8 | ["closetag", "R"] 9 | ] 10 | }); 11 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/test/issue-35.js: -------------------------------------------------------------------------------- 1 | // https://github.com/isaacs/sax-js/issues/35 2 | require(__dirname).test 3 | ( { xml : " \n"+ 4 | "" 5 | 6 | , expect : 7 | [ [ "opentag", { name: "xml", attributes: {} } ] 8 | , [ "text", "\r\r\n" ] 9 | , [ "closetag", "xml" ] 10 | ] 11 | , strict : true 12 | , opt : {} 13 | } 14 | ) 15 | 16 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/test/issue-47.js: -------------------------------------------------------------------------------- 1 | // https://github.com/isaacs/sax-js/issues/47 2 | require(__dirname).test 3 | ( { xml : '' 4 | , expect : [ 5 | [ "attribute", { name:'href', value:"query.svc?x=1&y=2&z=3"} ], 6 | [ "opentag", { name: "a", attributes: { href:"query.svc?x=1&y=2&z=3"} } ], 7 | [ "closetag", "a" ] 8 | ] 9 | , strict : true 10 | , opt : {} 11 | } 12 | ) 13 | 14 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/test/script.js: -------------------------------------------------------------------------------- 1 | require(__dirname).test({ 2 | xml : "", 3 | expect : [ 4 | ["opentag", {"name": "HTML","attributes": {}}], 5 | ["opentag", {"name": "HEAD","attributes": {}}], 6 | ["opentag", {"name": "SCRIPT","attributes": {}}], 7 | ["script", "if (1 < 0) { console.log('elo there'); }"], 8 | ["closetag", "SCRIPT"], 9 | ["closetag", "HEAD"], 10 | ["closetag", "HTML"] 11 | ] 12 | }); 13 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/test/stray-ending.js: -------------------------------------------------------------------------------- 1 | // stray ending tags should just be ignored in non-strict mode. 2 | // https://github.com/isaacs/sax-js/issues/32 3 | require(__dirname).test 4 | ( { xml : 5 | "" 6 | , expect : 7 | [ [ "opentag", { name: "A", attributes: {} } ] 8 | , [ "opentag", { name: "B", attributes: {} } ] 9 | , [ "text", "" ] 10 | , [ "closetag", "B" ] 11 | , [ "closetag", "A" ] 12 | ] 13 | , strict : false 14 | , opt : {} 15 | } 16 | ) 17 | 18 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/test/trailing-non-whitespace.js: -------------------------------------------------------------------------------- 1 | 2 | require(__dirname).test({ 3 | xml : "Welcome, to monkey land", 4 | expect : [ 5 | ["opentag", { 6 | "name": "SPAN", 7 | "attributes": {} 8 | }], 9 | ["text", "Welcome,"], 10 | ["closetag", "SPAN"], 11 | ["text", " to monkey land"], 12 | ["end"], 13 | ["ready"] 14 | ], 15 | strict : false, 16 | opt : {} 17 | }); 18 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/test/unquoted.js: -------------------------------------------------------------------------------- 1 | // unquoted attributes should be ok in non-strict mode 2 | // https://github.com/isaacs/sax-js/issues/31 3 | require(__dirname).test 4 | ( { xml : 5 | "" 6 | , expect : 7 | [ [ "attribute", { name: "class", value: "test" } ] 8 | , [ "attribute", { name: "hello", value: "world" } ] 9 | , [ "opentag", { name: "SPAN", 10 | attributes: { class: "test", hello: "world" } } ] 11 | , [ "closetag", "SPAN" ] 12 | ] 13 | , strict : false 14 | , opt : {} 15 | } 16 | ) 17 | 18 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/sax/test/xmlns-xml-default-prefix.js: -------------------------------------------------------------------------------- 1 | require(__dirname).test( 2 | { xml : "" 3 | , expect : 4 | [ 5 | [ "opentag" 6 | , { name: "xml:root" 7 | , uri: "http://www.w3.org/XML/1998/namespace" 8 | , prefix: "xml" 9 | , local: "root" 10 | , attributes: {} 11 | , ns: {} 12 | } 13 | ] 14 | , ["closetag", "xml:root"] 15 | ] 16 | , strict : true 17 | , opt : { xmlns: true } 18 | } 19 | ) 20 | 21 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/semver/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | .nyc_output/ 4 | nyc_output/ 5 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/semver/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.10' 4 | - '0.12' 5 | - 'iojs' 6 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/.documentup.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ShellJS", 3 | "twitter": [ 4 | "r2r" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "loopfunc": true, 3 | "sub": true, 4 | "undef": true, 5 | "unused": true, 6 | "node": true 7 | } -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | tmp/ -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.11" 5 | - "0.12" 6 | 7 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/RELEASE.md: -------------------------------------------------------------------------------- 1 | # Release steps 2 | 3 | * Ensure master passes CI tests 4 | * Bump version in package.json. Any breaking change or new feature should bump minor (or even major). Non-breaking changes or fixes can just bump patch. 5 | * Update README manually if the changes are not documented in-code. If so, run `scripts/generate-docs.js` 6 | * Commit 7 | * `$ git tag ` (see `git tag -l` for latest) 8 | * `$ git push origin master --tags` 9 | * `$ npm publish .` 10 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/global.js: -------------------------------------------------------------------------------- 1 | var shell = require('./shell.js'); 2 | for (var cmd in shell) 3 | global[cmd] = shell[cmd]; 4 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/scripts/generate-docs.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../global'); 3 | 4 | echo('Appending docs to README.md'); 5 | 6 | cd(__dirname + '/..'); 7 | 8 | // Extract docs from shell.js 9 | var docs = grep('//@', 'shell.js'); 10 | 11 | docs = docs.replace(/\/\/\@include (.+)/g, function(match, path) { 12 | var file = path.match('.js$') ? path : path+'.js'; 13 | return grep('//@', file); 14 | }); 15 | 16 | // Remove '//@' 17 | docs = docs.replace(/\/\/\@ ?/g, ''); 18 | // Append docs to README 19 | sed('-i', /## Command reference(.|\n)*/, '## Command reference\n\n' + docs, 'README.md'); 20 | 21 | echo('All done.'); 22 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/src/cd.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs'); 2 | var common = require('./common'); 3 | 4 | //@ 5 | //@ ### cd('dir') 6 | //@ Changes to directory `dir` for the duration of the script 7 | function _cd(options, dir) { 8 | if (!dir) 9 | common.error('directory not specified'); 10 | 11 | if (!fs.existsSync(dir)) 12 | common.error('no such file or directory: ' + dir); 13 | 14 | if (!fs.statSync(dir).isDirectory()) 15 | common.error('not a directory: ' + dir); 16 | 17 | process.chdir(dir); 18 | } 19 | module.exports = _cd; 20 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/src/echo.js: -------------------------------------------------------------------------------- 1 | var common = require('./common'); 2 | 3 | //@ 4 | //@ ### echo(string [,string ...]) 5 | //@ 6 | //@ Examples: 7 | //@ 8 | //@ ```javascript 9 | //@ echo('hello world'); 10 | //@ var str = echo('hello world'); 11 | //@ ``` 12 | //@ 13 | //@ Prints string to stdout, and returns string with additional utility methods 14 | //@ like `.to()`. 15 | function _echo() { 16 | var messages = [].slice.call(arguments, 0); 17 | console.log.apply(this, messages); 18 | return common.ShellString(messages.join(' ')); 19 | } 20 | module.exports = _echo; 21 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/src/error.js: -------------------------------------------------------------------------------- 1 | var common = require('./common'); 2 | 3 | //@ 4 | //@ ### error() 5 | //@ Tests if error occurred in the last command. Returns `null` if no error occurred, 6 | //@ otherwise returns string explaining the error 7 | function error() { 8 | return common.state.error; 9 | }; 10 | module.exports = error; 11 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/src/popd.js: -------------------------------------------------------------------------------- 1 | // see dirs.js -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/src/pushd.js: -------------------------------------------------------------------------------- 1 | // see dirs.js -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/shelljs/src/pwd.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | var common = require('./common'); 3 | 4 | //@ 5 | //@ ### pwd() 6 | //@ Returns the current directory. 7 | function _pwd(options) { 8 | var pwd = path.resolve(process.cwd()); 9 | return common.ShellString(pwd); 10 | } 11 | module.exports = _pwd; 12 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/util-deprecate/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.2 / 2015-10-07 3 | ================== 4 | 5 | * use try/catch when checking `localStorage` (#3, @kumavis) 6 | 7 | 1.0.1 / 2014-11-25 8 | ================== 9 | 10 | * browser: use `console.warn()` for deprecation calls 11 | * browser: more jsdocs 12 | 13 | 1.0.0 / 2014-04-30 14 | ================== 15 | 16 | * initial commit 17 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * For Node.js, simply re-export the core `util.deprecate` function. 4 | */ 5 | 6 | module.exports = require('util').deprecate; 7 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/xmlbuilder/.npmignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | src 3 | test 4 | perf 5 | coverage 6 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/xmlbuilder/lib/index.js: -------------------------------------------------------------------------------- 1 | // Generated by CoffeeScript 1.9.1 2 | (function() { 3 | var XMLBuilder, assign; 4 | 5 | assign = require('lodash/object/assign'); 6 | 7 | XMLBuilder = require('./XMLBuilder'); 8 | 9 | module.exports.create = function(name, xmldec, doctype, options) { 10 | options = assign({}, xmldec, doctype, options); 11 | return new XMLBuilder(name, options).root(); 12 | }; 13 | 14 | }).call(this); 15 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/xmldom/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | t 3 | travis.yml 4 | .project 5 | changelog 6 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/xmldom/LICENSE: -------------------------------------------------------------------------------- 1 | You can choose any one of those: 2 | 3 | The MIT License (MIT): 4 | 5 | link:http://opensource.org/licenses/MIT 6 | 7 | LGPL: 8 | http://www.gnu.org/licenses/lgpl.html 9 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/xmldom/__package__.js: -------------------------------------------------------------------------------- 1 | this.addScript('dom.js',['DOMImplementation','XMLSerializer']); 2 | this.addScript('dom-parser.js',['DOMHandler','DOMParser'], 3 | ['DOMImplementation','XMLReader']); 4 | this.addScript('sax.js','XMLReader'); -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/xmldom/changelog: -------------------------------------------------------------------------------- 1 | ### Version 0.1.16 2 | 3 | Sat May 4 14:58:03 UTC 2013 4 | 5 | * Correctly handle multibyte Unicode greater than two byts. #57. #56. 6 | * Initial unit testing and test coverage. #53. #46. #19. 7 | * Create Bower `component.json` #52. 8 | 9 | ### Version 0.1.8 10 | 11 | * Add: some test case from node-o3-xml(excludes xpath support) 12 | * Fix: remove existed attribute before setting (bug introduced in v0.1.5) 13 | * Fix: index direct access for childNodes and any NodeList collection(not w3c standard) 14 | * Fix: remove last child bug 15 | -------------------------------------------------------------------------------- /platforms/android/cordova/node_modules/xmldom/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "xmldom", 3 | "version": "0.1.15", 4 | "main": "dom-parser.js", 5 | "ignore": [ 6 | "**/.*", 7 | "node_modules", 8 | "components" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /platforms/android/platform_www/plugins/cordova-plugin-app-update/www/AppUpdate.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-app-update.AppUpdate", function(require, exports, module) { 2 | var exec = require('cordova/exec'); 3 | 4 | exports.checkAppUpdate = function(success, error, updateUrl) { 5 | updateUrl = updateUrl ? [updateUrl] : []; 6 | exec(success, error, "AppUpdate", "checkAppUpdate", updateUrl); 7 | }; 8 | }); 9 | -------------------------------------------------------------------------------- /platforms/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-land-hdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-land-hdpi/screen.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-land-ldpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-land-ldpi/screen.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-land-mdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-land-mdpi/screen.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-land-xhdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-land-xhdpi/screen.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-port-hdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-port-hdpi/screen.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-port-ldpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-port-ldpi/screen.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-port-mdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-port-mdpi/screen.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-port-xhdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-port-xhdpi/screen.png -------------------------------------------------------------------------------- /platforms/android/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /platforms/android/res/layout/appupdate_progress.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /platforms/android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | AppUpdateDemo 4 | @string/app_name 5 | @string/launcher_name 6 | 7 | -------------------------------------------------------------------------------- /platforms/android/settings.gradle: -------------------------------------------------------------------------------- 1 | // GENERATED FILE - DO NOT EDIT 2 | include ":" 3 | include ":CordovaLib" 4 | -------------------------------------------------------------------------------- /platforms/android/src/com/vaenow/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/platforms/android/src/com/vaenow/.DS_Store -------------------------------------------------------------------------------- /platforms/android/src/com/vaenow/appupdate/android/GetRemoteXmlThread.java: -------------------------------------------------------------------------------- 1 | package com.vaenow.appupdate.android; 2 | 3 | /** 4 | * Created by LuoWen on 2015/10/27. 5 | */ 6 | public class GetRemoteXmlThread extends Thread { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /platforms/android/src/com/vaenow/appupdate/android/Utils.java: -------------------------------------------------------------------------------- 1 | package com.vaenow.appupdate.android; 2 | 3 | import org.json.JSONException; 4 | import org.json.JSONObject; 5 | 6 | /** 7 | * Created by LuoWen on 16/7/22. 8 | */ 9 | public class Utils { 10 | 11 | static JSONObject makeJSON(int code, Object msg) { 12 | JSONObject json = new JSONObject(); 13 | 14 | try { 15 | json.put("code", code); 16 | json.put("msg", msg); 17 | } catch (JSONException e) { 18 | e.printStackTrace(); 19 | } 20 | 21 | return json; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /platforms/android/src/com/vaenow/appupdate/android/Version.java: -------------------------------------------------------------------------------- 1 | package com.vaenow.appupdate.android; 2 | 3 | /** 4 | * Created by LuoWen on 2015/12/14. 5 | */ 6 | public class Version { 7 | private int local; 8 | private int remote; 9 | 10 | public Version(int local, int remote) { 11 | this.local = local; 12 | this.remote = remote; 13 | } 14 | 15 | public int getLocal() { 16 | return local; 17 | } 18 | 19 | public int getRemote() { 20 | return remote; 21 | } 22 | } -------------------------------------------------------------------------------- /platforms/platforms.json: -------------------------------------------------------------------------------- 1 | { 2 | "android": "5.1.1" 3 | } -------------------------------------------------------------------------------- /plugins/android.json: -------------------------------------------------------------------------------- 1 | { 2 | "prepare_queue": { 3 | "installed": [], 4 | "uninstalled": [] 5 | }, 6 | "config_munge": { 7 | "files": {} 8 | }, 9 | "installed_plugins": { 10 | "cordova-plugin-whitelist": { 11 | "PACKAGE_NAME": "io.cordova.hellocordova" 12 | }, 13 | "cordova-plugin-app-update": { 14 | "PACKAGE_NAME": "io.cordova.hellocordova" 15 | } 16 | }, 17 | "dependent_plugins": { 18 | "cordova-plugin-appversion": { 19 | "PACKAGE_NAME": "io.cordova.hellocordova" 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /plugins/cordova-plugin-app-update/res/img/Screenshot_2015-10-31-13-42-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/plugins/cordova-plugin-app-update/res/img/Screenshot_2015-10-31-13-42-13.jpg -------------------------------------------------------------------------------- /plugins/cordova-plugin-app-update/res/img/Screenshot_2015-10-31-13-42-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/plugins/cordova-plugin-app-update/res/img/Screenshot_2015-10-31-13-42-19.jpg -------------------------------------------------------------------------------- /plugins/cordova-plugin-app-update/res/layout/appupdate_progress.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-app-update/res/xml/version.xml: -------------------------------------------------------------------------------- 1 | 2 | 2222 3 | name 4 | http://192.168.3.102/android.apk 5 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-app-update/src/android/GetRemoteXmlThread.java: -------------------------------------------------------------------------------- 1 | package com.vaenow.appupdate.android; 2 | 3 | /** 4 | * Created by LuoWen on 2015/10/27. 5 | */ 6 | public class GetRemoteXmlThread extends Thread { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-app-update/src/android/Utils.java: -------------------------------------------------------------------------------- 1 | package com.vaenow.appupdate.android; 2 | 3 | import org.json.JSONException; 4 | import org.json.JSONObject; 5 | 6 | /** 7 | * Created by LuoWen on 16/7/22. 8 | */ 9 | public class Utils { 10 | 11 | static JSONObject makeJSON(int code, Object msg) { 12 | JSONObject json = new JSONObject(); 13 | 14 | try { 15 | json.put("code", code); 16 | json.put("msg", msg); 17 | } catch (JSONException e) { 18 | e.printStackTrace(); 19 | } 20 | 21 | return json; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-app-update/src/android/Version.java: -------------------------------------------------------------------------------- 1 | package com.vaenow.appupdate.android; 2 | 3 | /** 4 | * Created by LuoWen on 2015/12/14. 5 | */ 6 | public class Version { 7 | private int local; 8 | private int remote; 9 | 10 | public Version(int local, int remote) { 11 | this.local = local; 12 | this.remote = remote; 13 | } 14 | 15 | public int getLocal() { 16 | return local; 17 | } 18 | 19 | public int getRemote() { 20 | return remote; 21 | } 22 | } -------------------------------------------------------------------------------- /plugins/cordova-plugin-app-update/syncFromDemo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # sync *.java 4 | cp -r ../cordova-plugin-app-update-demo/platforms/android/src/com/vaenow/appupdate/android/* src/android/ 5 | 6 | # sync *.xml 7 | cp -r ../cordova-plugin-app-update-demo/platforms/android/res/values* res/ 8 | 9 | # clean 10 | rm res/values/strings.xml 11 | 12 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-app-update/www/AppUpdate.js: -------------------------------------------------------------------------------- 1 | var exec = require('cordova/exec'); 2 | 3 | exports.checkAppUpdate = function(success, error, updateUrl) { 4 | updateUrl = updateUrl ? [updateUrl] : []; 5 | exec(success, error, "AppUpdate", "checkAppUpdate", updateUrl); 6 | }; -------------------------------------------------------------------------------- /plugins/cordova-plugin-whitelist/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-whitelist/src/cordova-plugin-whitelist.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /remote_server_apk/android-debug-18.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/remote_server_apk/android-debug-18.apk -------------------------------------------------------------------------------- /remote_server_apk/android-debug-302048.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/remote_server_apk/android-debug-302048.apk -------------------------------------------------------------------------------- /remote_server_apk/version.xml: -------------------------------------------------------------------------------- 1 | 2 | 302048 3 | apk name 4 | https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/master/remote_server_apk/android-debug-302048.apk 5 | 6 | -------------------------------------------------------------------------------- /www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaenow/cordova-plugin-app-update-demo/6d9a8add08abb323f17a19f6b2f54ee7d86e178a/www/img/logo.png --------------------------------------------------------------------------------