├── .env ├── .gitignore ├── README.md ├── babel.config.js ├── cordova_app ├── .npmignore ├── config.xml ├── hooks │ └── README.md ├── package-lock.json ├── package.json ├── platforms │ ├── .gitkeep │ └── android │ │ ├── .gitignore │ │ ├── .gradle │ │ ├── 4.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileContent │ │ │ │ └── fileContent.lock │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileHashes.lock │ │ │ │ └── resourceHashesCache.bin │ │ │ ├── javaCompile │ │ │ │ ├── classAnalysis.bin │ │ │ │ ├── jarAnalysis.bin │ │ │ │ ├── javaCompile.lock │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskJars.bin │ │ │ └── taskHistory │ │ │ │ ├── fileSnapshots.bin │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskHistory.lock │ │ ├── 4.10.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ └── fileHashes.lock │ │ │ ├── gc.properties │ │ │ └── taskHistory │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskHistory.lock │ │ └── buildOutputCleanup │ │ │ ├── built.bin │ │ │ ├── cache.properties │ │ │ └── cache.properties.lock │ │ ├── AndroidManifest.xml │ │ ├── CordovaLib │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── build │ │ │ ├── generated │ │ │ │ └── source │ │ │ │ │ ├── buildConfig │ │ │ │ │ └── debug │ │ │ │ │ │ └── org │ │ │ │ │ │ └── apache │ │ │ │ │ │ └── cordova │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ │ └── r │ │ │ │ │ └── debug │ │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── cordova │ │ │ │ │ └── R.java │ │ │ ├── intermediates │ │ │ │ ├── attr │ │ │ │ │ └── R.txt │ │ │ │ ├── bundles │ │ │ │ │ └── debug │ │ │ │ │ │ └── R.txt │ │ │ │ ├── classes │ │ │ │ │ └── debug │ │ │ │ │ │ └── org │ │ │ │ │ │ └── apache │ │ │ │ │ │ └── cordova │ │ │ │ │ │ ├── AuthenticationToken.class │ │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ │ ├── BuildHelper.class │ │ │ │ │ │ ├── CallbackContext.class │ │ │ │ │ │ ├── CallbackMap.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$EvalBridgeMode$1.class │ │ │ │ │ │ ├── NativeToJsMessageQueue$EvalBridgeMode.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 │ │ │ │ │ │ ├── PermissionHelper.class │ │ │ │ │ │ ├── PluginEntry.class │ │ │ │ │ │ ├── PluginManager.class │ │ │ │ │ │ ├── PluginResult$Status.class │ │ │ │ │ │ ├── PluginResult.class │ │ │ │ │ │ ├── R.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 │ │ │ │ │ ├── debug-mergeJniLibs │ │ │ │ │ │ └── merge-state │ │ │ │ │ ├── mergeDebugAssets │ │ │ │ │ │ └── merger.xml │ │ │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ │ │ └── merger.xml │ │ │ │ │ ├── mergeDebugShaders │ │ │ │ │ │ └── merger.xml │ │ │ │ │ └── packageDebugResources │ │ │ │ │ │ ├── compile-file-map.properties │ │ │ │ │ │ └── merger.xml │ │ │ │ ├── intermediate-jars │ │ │ │ │ └── debug │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── res.jar │ │ │ │ ├── javaPrecompile │ │ │ │ │ └── debug │ │ │ │ │ │ └── annotationProcessors.json │ │ │ │ ├── manifests │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── output.json │ │ │ │ │ └── full │ │ │ │ │ │ └── debug │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── output.json │ │ │ │ ├── res │ │ │ │ │ ├── debug │ │ │ │ │ │ └── output.json │ │ │ │ │ └── symbol-table-with-package │ │ │ │ │ │ └── debug │ │ │ │ │ │ └── package-aware-r.txt │ │ │ │ └── transforms │ │ │ │ │ └── mergeJniLibs │ │ │ │ │ └── debug │ │ │ │ │ └── __content__.json │ │ │ └── outputs │ │ │ │ └── logs │ │ │ │ └── manifest-merger-debug-report.txt │ │ ├── cordova.gradle │ │ ├── project.properties │ │ └── src │ │ │ └── org │ │ │ └── apache │ │ │ └── cordova │ │ │ ├── AuthenticationToken.java │ │ │ ├── BuildHelper.java │ │ │ ├── CallbackContext.java │ │ │ ├── CallbackMap.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 │ │ │ ├── PermissionHelper.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.json │ │ ├── assets │ │ └── www │ │ │ ├── cordova-js-src │ │ │ ├── android │ │ │ │ ├── nativeapiprovider.js │ │ │ │ └── promptbasednativeapi.js │ │ │ ├── exec.js │ │ │ ├── platform.js │ │ │ └── plugin │ │ │ │ └── android │ │ │ │ └── app.js │ │ │ ├── cordova.js │ │ │ ├── cordova_256.png │ │ │ ├── cordova_plugins.js │ │ │ ├── css │ │ │ ├── app.387bb61b.css │ │ │ └── chunk-vendors.7962293d.css │ │ │ ├── favicon.ico │ │ │ ├── fonts │ │ │ ├── MaterialIcons-Regular.0509ab09.woff2 │ │ │ ├── MaterialIcons-Regular.29b882f0.woff │ │ │ ├── MaterialIcons-Regular.96c47680.eot │ │ │ ├── MaterialIcons-Regular.da4ea5cd.ttf │ │ │ ├── Roboto-Black.313a6563.woff │ │ │ ├── Roboto-Black.59eb3601.woff2 │ │ │ ├── Roboto-BlackItalic.cc2fadc3.woff │ │ │ ├── Roboto-BlackItalic.f75569f8.woff2 │ │ │ ├── Roboto-Bold.50d75e48.woff │ │ │ ├── Roboto-Bold.b52fac2b.woff2 │ │ │ ├── Roboto-BoldItalic.4fe0f73c.woff │ │ │ ├── Roboto-BoldItalic.94008e69.woff2 │ │ │ ├── Roboto-Light.c73eb1ce.woff │ │ │ ├── Roboto-Light.d26871e8.woff2 │ │ │ ├── Roboto-LightItalic.13efe6cb.woff │ │ │ ├── Roboto-LightItalic.e8eaae90.woff2 │ │ │ ├── Roboto-Medium.1d659482.woff │ │ │ ├── Roboto-Medium.90d16760.woff2 │ │ │ ├── Roboto-MediumItalic.13ec0eb5.woff2 │ │ │ ├── Roboto-MediumItalic.83e114c3.woff │ │ │ ├── Roboto-Regular.35b07eb2.woff │ │ │ ├── Roboto-Regular.73f0a88b.woff2 │ │ │ ├── Roboto-RegularItalic.4357beb8.woff2 │ │ │ ├── Roboto-RegularItalic.f5902d5e.woff │ │ │ ├── Roboto-Thin.ad538a69.woff2 │ │ │ ├── Roboto-Thin.d3b47375.woff │ │ │ ├── Roboto-ThinItalic.5b4a33e1.woff2 │ │ │ ├── Roboto-ThinItalic.8a96edbb.woff │ │ │ ├── materialdesignicons-webfont.443b30cd.eot │ │ │ ├── materialdesignicons-webfont.53dc8616.ttf │ │ │ ├── materialdesignicons-webfont.b60a2303.woff │ │ │ └── materialdesignicons-webfont.d89054b1.woff2 │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── app.27230bdd.js │ │ │ ├── app.27230bdd.js.map │ │ │ ├── chunk-vendors.22347130.js │ │ │ └── chunk-vendors.22347130.js.map │ │ │ ├── plugins │ │ │ ├── cordova-plugin-camera │ │ │ │ └── www │ │ │ │ │ ├── Camera.js │ │ │ │ │ ├── CameraConstants.js │ │ │ │ │ ├── CameraPopoverHandle.js │ │ │ │ │ └── CameraPopoverOptions.js │ │ │ ├── cordova-plugin-dialogs │ │ │ │ └── www │ │ │ │ │ ├── android │ │ │ │ │ └── notification.js │ │ │ │ │ └── notification.js │ │ │ ├── cordova-plugin-flashlight │ │ │ │ └── www │ │ │ │ │ └── Flashlight.js │ │ │ ├── cordova-plugin-geolocation │ │ │ │ └── www │ │ │ │ │ ├── PositionError.js │ │ │ │ │ └── android │ │ │ │ │ └── geolocation.js │ │ │ ├── cordova-plugin-headercolor │ │ │ │ └── www │ │ │ │ │ └── HeaderColor.js │ │ │ ├── cordova-plugin-statusbar │ │ │ │ └── www │ │ │ │ │ └── statusbar.js │ │ │ ├── cordova-plugin-vibration │ │ │ │ └── www │ │ │ │ │ └── vibration.js │ │ │ └── phonegap-nfc │ │ │ │ └── www │ │ │ │ └── phonegap-nfc.js │ │ │ └── vuejs.png │ │ ├── build.gradle │ │ ├── cordova │ │ ├── Api.js │ │ ├── android_sdk_version │ │ ├── android_sdk_version.bat │ │ ├── build │ │ ├── build.bat │ │ ├── check_reqs │ │ ├── check_reqs.bat │ │ ├── clean │ │ ├── clean.bat │ │ ├── defaults.xml │ │ ├── lib │ │ │ ├── Adb.js │ │ │ ├── AndroidManifest.js │ │ │ ├── AndroidProject.js │ │ │ ├── AndroidStudio.js │ │ │ ├── android_sdk.js │ │ │ ├── build.js │ │ │ ├── builders │ │ │ │ ├── AntBuilder.js │ │ │ │ ├── GenericBuilder.js │ │ │ │ ├── GradleBuilder.js │ │ │ │ └── builders.js │ │ │ ├── check_reqs.js │ │ │ ├── device.js │ │ │ ├── emulator.js │ │ │ ├── getASPath.bat │ │ │ ├── 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 │ │ ├── loggingHelper.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-camera │ │ │ └── www │ │ │ │ ├── Camera.js │ │ │ │ ├── CameraConstants.js │ │ │ │ ├── CameraPopoverHandle.js │ │ │ │ └── CameraPopoverOptions.js │ │ │ ├── cordova-plugin-dialogs │ │ │ └── www │ │ │ │ ├── android │ │ │ │ └── notification.js │ │ │ │ └── notification.js │ │ │ ├── cordova-plugin-flashlight │ │ │ └── www │ │ │ │ └── Flashlight.js │ │ │ ├── cordova-plugin-geolocation │ │ │ └── www │ │ │ │ ├── PositionError.js │ │ │ │ └── android │ │ │ │ └── geolocation.js │ │ │ ├── cordova-plugin-headercolor │ │ │ └── www │ │ │ │ └── HeaderColor.js │ │ │ ├── cordova-plugin-statusbar │ │ │ └── www │ │ │ │ └── statusbar.js │ │ │ ├── cordova-plugin-vibration │ │ │ └── www │ │ │ │ └── vibration.js │ │ │ └── phonegap-nfc │ │ │ └── www │ │ │ └── phonegap-nfc.js │ │ ├── project.properties │ │ ├── res │ │ ├── drawable-land-hdpi │ │ │ └── screen.png │ │ ├── drawable-land-ldpi │ │ │ └── screen.png │ │ ├── drawable-land-mdpi │ │ │ └── screen.png │ │ ├── drawable-land-xhdpi │ │ │ └── screen.png │ │ ├── drawable-land-xxhdpi │ │ │ └── screen.png │ │ ├── drawable-land-xxxhdpi │ │ │ └── screen.png │ │ ├── drawable-port-hdpi │ │ │ └── screen.png │ │ ├── drawable-port-ldpi │ │ │ └── screen.png │ │ ├── drawable-port-mdpi │ │ │ └── screen.png │ │ ├── drawable-port-xhdpi │ │ │ └── screen.png │ │ ├── drawable-port-xxhdpi │ │ │ └── screen.png │ │ ├── drawable-port-xxxhdpi │ │ │ └── screen.png │ │ ├── mipmap-hdpi │ │ │ └── icon.png │ │ ├── mipmap-ldpi │ │ │ └── icon.png │ │ ├── mipmap-mdpi │ │ │ └── icon.png │ │ ├── mipmap-xhdpi │ │ │ └── icon.png │ │ ├── mipmap-xxhdpi │ │ │ └── icon.png │ │ ├── mipmap-xxxhdpi │ │ │ └── icon.png │ │ ├── values │ │ │ └── strings.xml │ │ └── xml │ │ │ ├── config.xml │ │ │ └── provider_paths.xml │ │ ├── settings.gradle │ │ ├── src │ │ ├── com │ │ │ └── chariotsolutions │ │ │ │ └── nfc │ │ │ │ └── plugin │ │ │ │ ├── NfcPlugin.java │ │ │ │ └── Util.java │ │ ├── nl │ │ │ └── xservices │ │ │ │ └── plugins │ │ │ │ └── Flashlight.java │ │ ├── org │ │ │ └── apache │ │ │ │ └── cordova │ │ │ │ ├── camera │ │ │ │ ├── CameraLauncher.java │ │ │ │ ├── CordovaUri.java │ │ │ │ ├── ExifHelper.java │ │ │ │ └── FileHelper.java │ │ │ │ ├── dialogs │ │ │ │ └── Notification.java │ │ │ │ ├── geolocation │ │ │ │ └── Geolocation.java │ │ │ │ ├── statusbar │ │ │ │ └── StatusBar.java │ │ │ │ ├── vibration │ │ │ │ └── Vibration.java │ │ │ │ └── whitelist │ │ │ │ └── WhitelistPlugin.java │ │ ├── tomloprod │ │ │ └── headercolor │ │ │ │ └── HeaderColor.java │ │ └── vuejs │ │ │ └── cordova │ │ │ └── sample │ │ │ └── MainActivity.java │ │ └── wrapper.gradle ├── plugins │ ├── .gitkeep │ ├── android.json │ ├── cordova-plugin-android-window-background │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cordova-window-background-strings.xml │ │ ├── cordova-window-background-styles.xml │ │ ├── package.json │ │ └── plugin.xml │ ├── cordova-plugin-camera │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── appium-tests │ │ │ ├── android │ │ │ │ └── android.spec.js │ │ │ ├── helpers │ │ │ │ └── cameraHelper.js │ │ │ └── ios │ │ │ │ └── ios.spec.js │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── img │ │ │ │ ├── android-fail.png │ │ │ │ ├── android-success.png │ │ │ │ ├── blackberry-fail.png │ │ │ │ ├── blackberry-success.png │ │ │ │ ├── browser-fail.png │ │ │ │ ├── browser-success.png │ │ │ │ ├── firefox-fail.png │ │ │ │ ├── firefox-success.png │ │ │ │ ├── fireos-fail.png │ │ │ │ ├── fireos-success.png │ │ │ │ ├── ios-fail.png │ │ │ │ ├── ios-success.png │ │ │ │ ├── ubuntu-fail.png │ │ │ │ ├── ubuntu-success.png │ │ │ │ ├── windows-fail.png │ │ │ │ ├── windows-success.png │ │ │ │ ├── wp8-fail.png │ │ │ │ └── wp8-success.png │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── jsdoc2md │ │ │ └── TEMPLATE.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ ├── CameraLauncher.java │ │ │ │ ├── CordovaUri.java │ │ │ │ ├── ExifHelper.java │ │ │ │ ├── FileHelper.java │ │ │ │ └── xml │ │ │ │ │ └── provider_paths.xml │ │ │ ├── blackberry10 │ │ │ │ └── index.js │ │ │ ├── browser │ │ │ │ └── CameraProxy.js │ │ │ ├── firefoxos │ │ │ │ └── CameraProxy.js │ │ │ ├── ios │ │ │ │ ├── CDVCamera.h │ │ │ │ ├── CDVCamera.m │ │ │ │ ├── CDVExif.h │ │ │ │ ├── CDVJpegHeaderWriter.h │ │ │ │ ├── CDVJpegHeaderWriter.m │ │ │ │ ├── UIImage+CropScaleOrientation.h │ │ │ │ └── UIImage+CropScaleOrientation.m │ │ │ ├── ubuntu │ │ │ │ ├── CaptureWidget.qml │ │ │ │ ├── back.png │ │ │ │ ├── camera.cpp │ │ │ │ ├── camera.h │ │ │ │ ├── shoot.png │ │ │ │ ├── toolbar-left.png │ │ │ │ ├── toolbar-middle.png │ │ │ │ └── toolbar-right.png │ │ │ ├── windows │ │ │ │ └── CameraProxy.js │ │ │ └── wp │ │ │ │ └── Camera.cs │ │ ├── tests │ │ │ ├── ios │ │ │ │ ├── .npmignore │ │ │ │ ├── CDVCameraTest.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── CDVCameraTest.xccheckout │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── CordovaLib.xcscheme │ │ │ │ ├── CDVCameraTest │ │ │ │ │ ├── CDVCameraLibTests │ │ │ │ │ │ ├── CameraTest.m │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── CDVCameraTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── CDVCameraTest.xccheckout │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── CDVCameraLib.xcscheme │ │ │ │ │ │ └── CDVCameraLibTests.xcscheme │ │ │ │ ├── README.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 │ │ │ ├── package.json │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ ├── types │ │ │ └── index.d.ts │ │ └── www │ │ │ ├── Camera.js │ │ │ ├── CameraConstants.js │ │ │ ├── CameraPopoverHandle.js │ │ │ ├── CameraPopoverOptions.js │ │ │ ├── blackberry10 │ │ │ └── assets │ │ │ │ ├── camera.html │ │ │ │ └── camera.js │ │ │ └── ios │ │ │ └── CameraPopoverHandle.js │ ├── cordova-plugin-compat │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── package.json │ │ ├── plugin.xml │ │ └── src │ │ │ └── android │ │ │ ├── BuildHelper.java │ │ │ └── PermissionHelper.java │ ├── cordova-plugin-dialogs │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── Notification.java │ │ │ ├── blackberry10 │ │ │ │ └── index.js │ │ │ ├── firefoxos │ │ │ │ └── notification.js │ │ │ ├── ios │ │ │ │ ├── CDVNotification.bundle │ │ │ │ │ └── beep.wav │ │ │ │ ├── CDVNotification.h │ │ │ │ └── CDVNotification.m │ │ │ ├── ubuntu │ │ │ │ ├── notification.cpp │ │ │ │ ├── notification.h │ │ │ │ └── notification.qml │ │ │ ├── windows │ │ │ │ └── NotificationProxy.js │ │ │ └── wp │ │ │ │ ├── Notification.cs │ │ │ │ ├── NotificationBox.xaml │ │ │ │ ├── NotificationBox.xaml.cs │ │ │ │ └── notification-beep.wav │ │ ├── tests │ │ │ ├── package.json │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ ├── types │ │ │ └── index.d.ts │ │ └── www │ │ │ ├── android │ │ │ └── notification.js │ │ │ ├── blackberry10 │ │ │ ├── beep.js │ │ │ └── notification-beep.wav │ │ │ ├── browser │ │ │ └── notification.js │ │ │ ├── firefoxos │ │ │ ├── danger-press.png │ │ │ ├── danger.png │ │ │ ├── default.png │ │ │ ├── gradient.png │ │ │ ├── notification.css │ │ │ ├── pattern.png │ │ │ └── recommend.png │ │ │ ├── notification.js │ │ │ └── windows │ │ │ └── notification.css │ ├── cordova-plugin-flashlight │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── nl │ │ │ │ │ └── xservices │ │ │ │ │ └── plugins │ │ │ │ │ └── Flashlight.java │ │ │ ├── ios │ │ │ │ ├── Flashlight.h │ │ │ │ └── Flashlight.m │ │ │ └── wp8 │ │ │ │ └── Flashlight.cs │ │ └── www │ │ │ └── Flashlight.js │ ├── cordova-plugin-geolocation │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── Geolocation.java │ │ │ ├── firefoxos │ │ │ │ └── GeolocationProxy.js │ │ │ ├── ios │ │ │ │ ├── CDVLocation.h │ │ │ │ └── CDVLocation.m │ │ │ ├── ubuntu │ │ │ │ ├── geolocation.cpp │ │ │ │ └── geolocation.h │ │ │ ├── windows │ │ │ │ └── GeolocationProxy.js │ │ │ └── wp │ │ │ │ └── GeoLocation.cs │ │ ├── tests │ │ │ ├── package.json │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www │ │ │ ├── Coordinates.js │ │ │ ├── Position.js │ │ │ ├── PositionError.js │ │ │ ├── android │ │ │ └── geolocation.js │ │ │ ├── blackberry10 │ │ │ └── GeolocationProxy.js │ │ │ └── geolocation.js │ ├── cordova-plugin-headercolor │ │ ├── README.MD │ │ ├── headercolor.png │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ └── android │ │ │ │ └── HeaderColor.java │ │ └── www │ │ │ └── HeaderColor.js │ ├── cordova-plugin-statusbar │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── StatusBar.java │ │ │ ├── browser │ │ │ │ └── StatusBarProxy.js │ │ │ ├── ios │ │ │ │ ├── CDVStatusBar.h │ │ │ │ └── CDVStatusBar.m │ │ │ ├── windows │ │ │ │ └── StatusBarProxy.js │ │ │ └── wp │ │ │ │ └── StatusBar.cs │ │ ├── tests │ │ │ ├── package.json │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ ├── types │ │ │ └── index.d.ts │ │ └── www │ │ │ └── statusbar.js │ ├── cordova-plugin-vibration │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── Vibration.java │ │ │ ├── blackberry10 │ │ │ │ ├── index.js │ │ │ │ └── native │ │ │ │ │ ├── .cproject │ │ │ │ │ ├── .project │ │ │ │ │ ├── device │ │ │ │ │ └── libVibration.so │ │ │ │ │ ├── public │ │ │ │ │ ├── plugin.cpp │ │ │ │ │ ├── plugin.h │ │ │ │ │ ├── tokenizer.cpp │ │ │ │ │ └── tokenizer.h │ │ │ │ │ ├── simulator │ │ │ │ │ └── libVibration.so │ │ │ │ │ └── src │ │ │ │ │ ├── vibration_js.cpp │ │ │ │ │ └── vibration_js.hpp │ │ │ ├── browser │ │ │ │ └── Vibration.js │ │ │ ├── firefoxos │ │ │ │ └── VibrationProxy.js │ │ │ ├── ios │ │ │ │ ├── CDVVibration.h │ │ │ │ └── CDVVibration.m │ │ │ ├── tizen │ │ │ │ └── VibrationProxy.js │ │ │ ├── ubuntu │ │ │ │ ├── vibration.cpp │ │ │ │ └── vibration.h │ │ │ ├── windows │ │ │ │ ├── Vibration │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Vibration.cs │ │ │ │ │ └── Vibration.csproj │ │ │ │ └── VibrationProxy.js │ │ │ └── wp │ │ │ │ └── Vibration.cs │ │ ├── tests │ │ │ ├── package.json │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ ├── types │ │ │ └── index.d.ts │ │ └── www │ │ │ ├── blackberry10 │ │ │ └── vibrate.js │ │ │ └── vibration.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 │ ├── fetch.json │ └── phonegap-nfc │ │ ├── CHANGES.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── doc │ │ ├── GettingStartedBlackBerry10.md │ │ ├── GettingStartedCLI.md │ │ ├── read_tag_1_basic_app.png │ │ ├── read_tag_2_dump_tag.png │ │ └── read_tag_3_payload_as_string.png │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ ├── android │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── chariotsolutions │ │ │ │ └── nfc │ │ │ │ └── plugin │ │ │ │ ├── NfcPlugin.java │ │ │ │ └── Util.java │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── webworks │ │ │ ├── build.xml │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── chariotsolutions │ │ │ │ └── nfc │ │ │ │ └── plugin │ │ │ │ ├── NfcPlugin.java │ │ │ │ └── Util.java │ │ ├── windows-phone-8 │ │ │ ├── Ndef.cs │ │ │ └── NfcPlugin.cs │ │ └── windows │ │ │ └── nfc-plugin.js │ │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ │ └── www │ │ ├── phonegap-nfc-blackberry.js │ │ └── phonegap-nfc.js ├── res │ ├── README.md │ ├── icon │ │ ├── android │ │ │ ├── icon-36-ldpi.png │ │ │ ├── icon-48-mdpi.png │ │ │ ├── icon-72-hdpi.png │ │ │ └── icon-96-xhdpi.png │ │ ├── bada-wac │ │ │ ├── icon-48-type5.png │ │ │ ├── icon-50-type3.png │ │ │ └── icon-80-type4.png │ │ ├── bada │ │ │ └── icon-128.png │ │ ├── blackberry │ │ │ └── icon-80.png │ │ ├── blackberry10 │ │ │ └── icon-80.png │ │ ├── ios │ │ │ ├── icon-57-2x.png │ │ │ ├── icon-57.png │ │ │ ├── icon-72-2x.png │ │ │ └── icon-72.png │ │ ├── tizen │ │ │ └── icon-128.png │ │ ├── webos │ │ │ └── icon-64.png │ │ └── windows-phone │ │ │ ├── icon-173-tile.png │ │ │ ├── icon-48.png │ │ │ └── icon-62-tile.png │ └── screen │ │ ├── android │ │ ├── screen-hdpi-landscape.png │ │ ├── screen-hdpi-portrait.png │ │ ├── screen-ldpi-landscape.png │ │ ├── screen-ldpi-portrait.png │ │ ├── screen-mdpi-landscape.png │ │ ├── screen-mdpi-portrait.png │ │ ├── screen-xhdpi-landscape.png │ │ └── screen-xhdpi-portrait.png │ │ ├── bada-wac │ │ ├── screen-type3.png │ │ ├── screen-type4.png │ │ └── screen-type5.png │ │ ├── bada │ │ └── screen-portrait.png │ │ ├── blackberry │ │ └── screen-225.png │ │ ├── blackberry10 │ │ ├── splash-1280x768.png │ │ ├── splash-720x720.png │ │ └── splash-768x1280.png │ │ ├── ios │ │ ├── screen-ipad-landscape-2x.png │ │ ├── screen-ipad-landscape.png │ │ ├── screen-ipad-portrait-2x.png │ │ ├── screen-ipad-portrait.png │ │ ├── screen-iphone-landscape-2x.png │ │ ├── screen-iphone-landscape.png │ │ ├── screen-iphone-portrait-2x.png │ │ ├── screen-iphone-portrait-568h-2x.png │ │ └── screen-iphone-portrait.png │ │ ├── tizen │ │ └── README.md │ │ ├── webos │ │ └── screen-64.png │ │ └── windows-phone │ │ └── screen-portrait.jpg └── www │ ├── cordova_256.png │ ├── css │ ├── app.387bb61b.css │ └── chunk-vendors.7962293d.css │ ├── favicon.ico │ ├── fonts │ ├── MaterialIcons-Regular.0509ab09.woff2 │ ├── MaterialIcons-Regular.29b882f0.woff │ ├── MaterialIcons-Regular.96c47680.eot │ ├── MaterialIcons-Regular.da4ea5cd.ttf │ ├── Roboto-Black.313a6563.woff │ ├── Roboto-Black.59eb3601.woff2 │ ├── Roboto-BlackItalic.cc2fadc3.woff │ ├── Roboto-BlackItalic.f75569f8.woff2 │ ├── Roboto-Bold.50d75e48.woff │ ├── Roboto-Bold.b52fac2b.woff2 │ ├── Roboto-BoldItalic.4fe0f73c.woff │ ├── Roboto-BoldItalic.94008e69.woff2 │ ├── Roboto-Light.c73eb1ce.woff │ ├── Roboto-Light.d26871e8.woff2 │ ├── Roboto-LightItalic.13efe6cb.woff │ ├── Roboto-LightItalic.e8eaae90.woff2 │ ├── Roboto-Medium.1d659482.woff │ ├── Roboto-Medium.90d16760.woff2 │ ├── Roboto-MediumItalic.13ec0eb5.woff2 │ ├── Roboto-MediumItalic.83e114c3.woff │ ├── Roboto-Regular.35b07eb2.woff │ ├── Roboto-Regular.73f0a88b.woff2 │ ├── Roboto-RegularItalic.4357beb8.woff2 │ ├── Roboto-RegularItalic.f5902d5e.woff │ ├── Roboto-Thin.ad538a69.woff2 │ ├── Roboto-Thin.d3b47375.woff │ ├── Roboto-ThinItalic.5b4a33e1.woff2 │ ├── Roboto-ThinItalic.8a96edbb.woff │ ├── materialdesignicons-webfont.443b30cd.eot │ ├── materialdesignicons-webfont.53dc8616.ttf │ ├── materialdesignicons-webfont.b60a2303.woff │ └── materialdesignicons-webfont.d89054b1.woff2 │ ├── index.html │ ├── js │ ├── app.27230bdd.js │ ├── app.27230bdd.js.map │ ├── chunk-vendors.22347130.js │ └── chunk-vendors.22347130.js.map │ └── vuejs.png ├── package-lock.json ├── package.json ├── public ├── cordova_256.png ├── favicon.ico ├── index.html └── vuejs.png ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── Drawer.vue │ ├── Loader.vue │ └── MyToolbar.vue ├── i18n.js ├── libs │ └── index.js ├── locales │ ├── en.json │ └── fr.json ├── main.js ├── plugins │ ├── vuetify-extra.js │ └── vuetify.js ├── router │ └── index.js └── views │ ├── Camera.vue │ ├── Flash.vue │ ├── Home.vue │ ├── Localisation.vue │ ├── Nfc.vue │ └── Vibration.vue └── vue.config.js /.env: -------------------------------------------------------------------------------- 1 | VUE_APP_I18N_LOCALE=fr 2 | VUE_APP_I18N_FALLBACK_LOCALE=en 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | 5 | # local env files 6 | .env.local 7 | .env.*.local 8 | 9 | # Log files 10 | npm-debug.log* 11 | yarn-debug.log* 12 | yarn-error.log* 13 | 14 | # Editor directories and files 15 | .idea 16 | .vscode 17 | *.suo 18 | *.ntvs* 19 | *.njsproj 20 | *.sln 21 | *.sw* 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vuejs-cordova-sample 2 | 3 | [![Build Status](https://travis-ci.org/c4software/vuejs-cordova-sample.svg?branch=master)](https://travis-ci.org/c4software/vuejs-cordova-sample) 4 | 5 | > Sample VueJS app thats use Cordova capabilities 6 | 7 | ![Demo screenshot](demo.png) 8 | 9 | ## Build Setup 10 | 11 | ```bash 12 | # install dependencies 13 | npm install 14 | 15 | # serve with hot reload at localhost:8080 16 | npm run serve 17 | 18 | # build for production to run in Cordova 19 | npm run build 20 | 21 | ``` 22 | 23 | ## First Cordova build 24 | 25 | Run the command : 26 | 27 | ```sh 28 | npm run build 29 | cd cordova_app 30 | cordova platform add android 31 | cordova run # or build 32 | ``` 33 | 34 | ## Next Cordova build 35 | 36 | ```sh 37 | npm run cordova_run # or cordova_build 38 | ``` 39 | 40 | ## Plugins 41 | 42 | - cordova-plugin-dialogs 43 | - cordova-plugin-vibration 44 | - cordova-plugin-geolocation 45 | - cordova-plugin-flashlight 46 | - cordova-plugin-camera 47 | - phonegap-nfc 48 | - cordova-plugin-statusbar 49 | - cordova-plugin-headercolor 50 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "presets": [ 3 | [ 4 | "@vue/app", 5 | { 6 | "useBuiltIns": "entry" 7 | } 8 | ] 9 | ] 10 | } -------------------------------------------------------------------------------- /cordova_app/.npmignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /cordova_app/hooks/README.md: -------------------------------------------------------------------------------- 1 | 21 | # Cordova Hooks 22 | 23 | Cordova Hooks represent special scripts which could be added by application and plugin developers or even by your own build system to customize cordova commands. See Hooks Guide for more details: http://cordova.apache.org/docs/en/edge/guide_appdev_hooks_index.md.html#Hooks%20Guide. 24 | -------------------------------------------------------------------------------- /cordova_app/platforms/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/.gitkeep -------------------------------------------------------------------------------- /cordova_app/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 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.10.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.10.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.10.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.10.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.10.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.10.1/gc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.10.1/gc.properties -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.10.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.10.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/4.10.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/4.10.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Sun Sep 23 22:47:42 CEST 2018 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /cordova_app/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 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/generated/source/r/debug/org/apache/cordova/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * gradle plugin from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package org.apache.cordova; 8 | 9 | public final class R { 10 | } 11 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/bundles/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/bundles/debug/R.txt -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/AuthenticationToken.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/AuthenticationToken.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/BuildConfig.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/BuildHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/BuildHelper.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CallbackContext.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CallbackContext.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CallbackMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CallbackMap.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Config.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Config.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ConfigXmlParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ConfigXmlParser.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$2.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$3.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$4$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$4$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity$4.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaActivity.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaArgs.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaArgs.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaBridge.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaBridge.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaClientCertRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaClientCertRequest.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$2.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$3.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$4.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$5.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$6.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$7.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$8.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$9.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$Result.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper$Result.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaDialogsHelper.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaHttpAuthHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaHttpAuthHandler.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterface.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterface.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterfaceImpl$ActivityResultHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterfaceImpl$ActivityResultHolder.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterfaceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaInterfaceImpl.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaPlugin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaPlugin.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaPreferences.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaPreferences.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaResourceApi$OpenForReadResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaResourceApi$OpenForReadResult.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaResourceApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaResourceApi.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebView.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine$Client.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine$Client.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine$EngineView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine$EngineView.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewEngine.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$2.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$3.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient$1$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl$EngineClient.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CordovaWebViewImpl.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$2.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$3.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$4.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid$5.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/CoreAndroid.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ExposedJsApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ExposedJsApi.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaClientCertRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaClientCertRequest.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaCookieManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaCookieManager.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaHttpAuthHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ICordovaHttpAuthHandler.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/LOG.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/LOG.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$BridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$BridgeMode.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$EvalBridgeMode$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$EvalBridgeMode$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$EvalBridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$EvalBridgeMode.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$JsMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$JsMessage.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$LoadUrlBridgeMode.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$NoOpBridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$NoOpBridgeMode.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$2.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$OnlineEventsBridgeModeDelegate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode$OnlineEventsBridgeModeDelegate.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue$OnlineEventsBridgeMode.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/NativeToJsMessageQueue.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PermissionHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PermissionHelper.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginEntry.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginManager.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginResult$Status.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginResult$Status.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/PluginResult.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/R.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ResumeCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/ResumeCallback.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Whitelist$URLPattern.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Whitelist$URLPattern.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Whitelist.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/Whitelist.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemCookieManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemCookieManager.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemExposedJsApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemExposedJsApi.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$2.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$3.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$4.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient$5.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebChromeClient.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebView.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewClient.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine$1.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine$2.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/classes/debug/org/apache/cordova/engine/SystemWebViewEngine.class -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/incremental/debug-mergeJniLibs/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/incremental/debug-mergeJniLibs/merge-state -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/incremental/mergeDebugAssets/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/incremental/mergeDebugShaders/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/incremental/packageDebugResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Sun Sep 01 12:26:22 CEST 2019 2 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/intermediate-jars/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/CordovaLib/build/intermediates/intermediate-jars/debug/classes.jar -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/intermediate-jars/debug/res.jar: -------------------------------------------------------------------------------- 1 | PK -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/javaPrecompile/debug/annotationProcessors.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/manifests/aapt/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/manifests/aapt/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"AndroidManifest.xml","properties":{"packageId":"org.apache.cordova","split":""}}] -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/manifests/full/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"AndroidManifest.xml","properties":{"packageId":"org.apache.cordova","split":""}}] -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/res/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"PROCESSED_RES"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"resources-debug.ap_","properties":{"packageId":"org.apache.cordova","split":""}}] -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt: -------------------------------------------------------------------------------- 1 | org.apache.cordova 2 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/build/intermediates/transforms/mergeJniLibs/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [{"name":"resources","index":1,"scopes":["PROJECT"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":false}] -------------------------------------------------------------------------------- /cordova_app/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-26 14 | apk-configurations= 15 | renderscript.opt.level=O0 16 | android.library=true 17 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/CordovaLib/src/org/apache/cordova/ICordovaCookieManager.java: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | package org.apache.cordova; 21 | 22 | public interface ICordovaCookieManager { 23 | 24 | public void setCookiesEnabled(boolean accept); 25 | 26 | public void setCookie(final String url, final String value); 27 | 28 | public String getCookie(final String url); 29 | 30 | public void clearCookies(); 31 | 32 | public void flush(); 33 | }; 34 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/cordova_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/cordova_256.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/css/app.387bb61b.css: -------------------------------------------------------------------------------- 1 | img.logo[data-v-f50462c0]{display:inline-block;width:90px;padding:20px}img[data-v-4ca4d085]{width:50%;display:block;margin:auto}.container[data-v-3c312abe]{padding:0}#map[data-v-3c312abe]{height:calc(100vh - 50px);width:100%;z-index:1}.loading[data-v-3c312abe]{position:absolute;width:150px;height:150px;bottom:50vh;top:50vh;z-index:200;margin:auto;background-color:#fff;border-radius:5px;left:calc(50% - 50px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;padding:10px} -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/favicon.ico -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/MaterialIcons-Regular.0509ab09.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/MaterialIcons-Regular.0509ab09.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/MaterialIcons-Regular.29b882f0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/MaterialIcons-Regular.29b882f0.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/MaterialIcons-Regular.96c47680.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/MaterialIcons-Regular.96c47680.eot -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/MaterialIcons-Regular.da4ea5cd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/MaterialIcons-Regular.da4ea5cd.ttf -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Black.313a6563.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Black.313a6563.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Black.59eb3601.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Black.59eb3601.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-BlackItalic.cc2fadc3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-BlackItalic.cc2fadc3.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-BlackItalic.f75569f8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-BlackItalic.f75569f8.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Bold.50d75e48.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Bold.50d75e48.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Bold.b52fac2b.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Bold.b52fac2b.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-BoldItalic.4fe0f73c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-BoldItalic.4fe0f73c.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-BoldItalic.94008e69.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-BoldItalic.94008e69.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Light.c73eb1ce.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Light.c73eb1ce.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Light.d26871e8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Light.d26871e8.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-LightItalic.13efe6cb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-LightItalic.13efe6cb.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-LightItalic.e8eaae90.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-LightItalic.e8eaae90.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Medium.1d659482.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Medium.1d659482.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Medium.90d16760.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Medium.90d16760.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-MediumItalic.13ec0eb5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-MediumItalic.13ec0eb5.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-MediumItalic.83e114c3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-MediumItalic.83e114c3.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Regular.35b07eb2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Regular.35b07eb2.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Regular.73f0a88b.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Regular.73f0a88b.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-RegularItalic.4357beb8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-RegularItalic.4357beb8.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-RegularItalic.f5902d5e.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-RegularItalic.f5902d5e.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Thin.ad538a69.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Thin.ad538a69.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-Thin.d3b47375.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-Thin.d3b47375.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-ThinItalic.5b4a33e1.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-ThinItalic.5b4a33e1.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/Roboto-ThinItalic.8a96edbb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/Roboto-ThinItalic.8a96edbb.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/materialdesignicons-webfont.443b30cd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/materialdesignicons-webfont.443b30cd.eot -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/materialdesignicons-webfont.53dc8616.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/materialdesignicons-webfont.53dc8616.ttf -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/materialdesignicons-webfont.b60a2303.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/materialdesignicons-webfont.b60a2303.woff -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/fonts/materialdesignicons-webfont.d89054b1.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/fonts/materialdesignicons-webfont.d89054b1.woff2 -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/index.html: -------------------------------------------------------------------------------- 1 | vuejs-cordova-sample
-------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/plugins/cordova-plugin-camera/www/CameraPopoverHandle.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-camera.CameraPopoverHandle", function(require, exports, module) { 2 | /* 3 | * 4 | * Licensed to the Apache Software Foundation (ASF) under one 5 | * or more contributor license agreements. See the NOTICE file 6 | * distributed with this work for additional information 7 | * regarding copyright ownership. The ASF licenses this file 8 | * to you under the Apache License, Version 2.0 (the 9 | * "License"); you may not use this file except in compliance 10 | * with the License. You may obtain a copy of the License at 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | * 14 | * Unless required by applicable law or agreed to in writing, 15 | * software distributed under the License is distributed on an 16 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 | * KIND, either express or implied. See the License for the 18 | * specific language governing permissions and limitations 19 | * under the License. 20 | * 21 | */ 22 | 23 | /** 24 | * @ignore in favour of iOS' one 25 | * A handle to an image picker popover. 26 | */ 27 | var CameraPopoverHandle = function() { 28 | this.setPosition = function(popoverOptions) { 29 | console.log('CameraPopoverHandle.setPosition is only supported on iOS.'); 30 | }; 31 | }; 32 | 33 | module.exports = CameraPopoverHandle; 34 | 35 | }); 36 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/plugins/cordova-plugin-headercolor/www/HeaderColor.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-headercolor.HeaderColor", function(require, exports, module) { 2 | var headerColor = { 3 | tint: function (color, successCallback, errorCallback) { 4 | cordova.exec(successCallback, errorCallback, 'HeaderColor', 'tint', [color]); 5 | } 6 | } 7 | 8 | if (!window.plugins) { window.plugins = {}; } 9 | 10 | window.plugins.headerColor = headerColor; 11 | return window.plugins.headerColor; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/assets/www/vuejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/assets/www/vuejs.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/android_sdk_version: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /* 4 | Licensed to the Apache Software Foundation (ASF) under one 5 | or more contributor license agreements. See the NOTICE file 6 | distributed with this work for additional information 7 | regarding copyright ownership. The ASF licenses this file 8 | to you under the Apache License, Version 2.0 (the 9 | "License"); you may not use this file except in compliance 10 | with the License. You may obtain a copy of the License at 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | 14 | Unless required by applicable law or agreed to in writing, 15 | software distributed under the License is distributed on an 16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 | KIND, either express or implied. See the License for the 18 | specific language governing permissions and limitations 19 | under the License. 20 | */ 21 | 22 | var android_sdk = require('./lib/android_sdk'); 23 | 24 | android_sdk.print_newest_available_sdk_target().done(null, function(err) { 25 | console.error(err); 26 | process.exit(2); 27 | }); 28 | 29 | 30 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/android_sdk_version.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0android_sdk_version" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'android_sdk_version' script in 'bin' folder, aborting...>&2 25 | EXIT /B 1 26 | ) 27 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/build.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0build" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'build' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/check_reqs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /* 4 | Licensed to the Apache Software Foundation (ASF) under one 5 | or more contributor license agreements. See the NOTICE file 6 | distributed with this work for additional information 7 | regarding copyright ownership. The ASF licenses this file 8 | to you under the Apache License, Version 2.0 (the 9 | "License"); you may not use this file except in compliance 10 | with the License. You may obtain a copy of the License at 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | 14 | Unless required by applicable law or agreed to in writing, 15 | software distributed under the License is distributed on an 16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 | KIND, either express or implied. See the License for the 18 | specific language governing permissions and limitations 19 | under the License. 20 | */ 21 | 22 | var check_reqs = require('./lib/check_reqs'); 23 | 24 | check_reqs.run().done( 25 | function success() { 26 | console.log('Looks like your environment fully supports cordova-android development!'); 27 | }, function fail(err) { 28 | console.log(err); 29 | process.exit(2); 30 | } 31 | ); 32 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/check_reqs.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0check_reqs" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'check_reqs' script in 'bin' folder, aborting...>&2 25 | EXIT /B 1 26 | ) 27 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/clean.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0clean" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'clean' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/defaults.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/lib/getASPath.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | for /f "tokens=2*" %%a in ('REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\Android Studio" /v Path') do set "ASPath=%%~b" 3 | ECHO %ASPath% -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/lib/install-device.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0install-device" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'install-device' script in 'cordova\lib' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/lib/install-emulator.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0install-emulator" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'install-emulator' script in 'cordova\lib' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/lib/list-devices: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /* 4 | Licensed to the Apache Software Foundation (ASF) under one 5 | or more contributor license agreements. See the NOTICE file 6 | distributed with this work for additional information 7 | regarding copyright ownership. The ASF licenses this file 8 | to you under the Apache License, Version 2.0 (the 9 | "License"); you may not use this file except in compliance 10 | with the License. You may obtain a copy of the License at 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | 14 | Unless required by applicable law or agreed to in writing, 15 | software distributed under the License is distributed on an 16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 | KIND, either express or implied. See the License for the 18 | specific language governing permissions and limitations 19 | under the License. 20 | */ 21 | 22 | var devices = require('./device'); 23 | 24 | // Usage support for when args are given 25 | require('./check_reqs').check_android().then(function() { 26 | devices.list().done(function(device_list) { 27 | device_list && device_list.forEach(function(dev) { 28 | console.log(dev); 29 | }); 30 | }, function(err) { 31 | console.error('ERROR: ' + err); 32 | process.exit(2); 33 | }); 34 | }); 35 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/lib/list-devices.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0list-devices" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'list-devices' script in 'cordova\lib' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/lib/list-emulator-images.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0list-emulator-images" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'list-emulator-images' script in 'cordova\lib' folder, aborting...>&2 25 | EXIT /B 1 26 | ) 27 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/lib/list-started-emulators.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0list-started-emulators" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'list-started-emulators' script in 'cordova\lib' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/lib/start-emulator.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0start-emulator" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'start-emulator' script in 'cordova\lib' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/log: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /* 4 | Licensed to the Apache Software Foundation (ASF) under one 5 | or more contributor license agreements. See the NOTICE file 6 | distributed with this work for additional information 7 | regarding copyright ownership. The ASF licenses this file 8 | to you under the Apache License, Version 2.0 (the 9 | "License"); you may not use this file except in compliance 10 | with the License. You may obtain a copy of the License at 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | 14 | Unless required by applicable law or agreed to in writing, 15 | software distributed under the License is distributed on an 16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 | KIND, either express or implied. See the License for the 18 | specific language governing permissions and limitations 19 | under the License. 20 | */ 21 | 22 | var log = require('./lib/log'), 23 | reqs = require('./lib/check_reqs'), 24 | args = process.argv; 25 | 26 | // Usage support for when args are given 27 | if(args.length > 2) { 28 | log.help(); 29 | } else { 30 | reqs.run().done(function() { 31 | return log.run(); 32 | }, function(err) { 33 | console.error('ERROR: ' + err); 34 | process.exit(2); 35 | }); 36 | } 37 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/log.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0log" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'log' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/loggingHelper.js: -------------------------------------------------------------------------------- 1 | var CordovaLogger = require('cordova-common').CordovaLogger; 2 | 3 | module.exports = { 4 | adjustLoggerLevel: function (opts) { 5 | if (opts instanceof Array) { 6 | opts.silent = opts.indexOf('--silent') !== -1; 7 | opts.verbose = opts.indexOf('--verbose') !== -1; 8 | } 9 | 10 | if (opts.silent) { 11 | CordovaLogger.get().setLevel('error'); 12 | } 13 | 14 | if (opts.verbose) { 15 | CordovaLogger.get().setLevel('verbose'); 16 | } 17 | } 18 | }; 19 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/run.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0run" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'run' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/version: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /* 4 | Licensed to the Apache Software Foundation (ASF) under one 5 | or more contributor license agreements. See the NOTICE file 6 | distributed with this work for additional information 7 | regarding copyright ownership. The ASF licenses this file 8 | to you under the Apache License, Version 2.0 (the 9 | "License"); you may not use this file except in compliance 10 | with the License. You may obtain a copy of the License at 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | 14 | Unless required by applicable law or agreed to in writing, 15 | software distributed under the License is distributed on an 16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 | KIND, either express or implied. See the License for the 18 | specific language governing permissions and limitations 19 | under the License. 20 | */ 21 | 22 | // Coho updates this line: 23 | var VERSION = "6.4.0"; 24 | 25 | module.exports.version = VERSION; 26 | 27 | if (!module.parent) { 28 | console.log(VERSION); 29 | } 30 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/cordova/version.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0version" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'version' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) 27 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/platform_www/plugins/cordova-plugin-camera/www/CameraPopoverHandle.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-camera.CameraPopoverHandle", function(require, exports, module) { 2 | /* 3 | * 4 | * Licensed to the Apache Software Foundation (ASF) under one 5 | * or more contributor license agreements. See the NOTICE file 6 | * distributed with this work for additional information 7 | * regarding copyright ownership. The ASF licenses this file 8 | * to you under the Apache License, Version 2.0 (the 9 | * "License"); you may not use this file except in compliance 10 | * with the License. You may obtain a copy of the License at 11 | * 12 | * http://www.apache.org/licenses/LICENSE-2.0 13 | * 14 | * Unless required by applicable law or agreed to in writing, 15 | * software distributed under the License is distributed on an 16 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 | * KIND, either express or implied. See the License for the 18 | * specific language governing permissions and limitations 19 | * under the License. 20 | * 21 | */ 22 | 23 | /** 24 | * @ignore in favour of iOS' one 25 | * A handle to an image picker popover. 26 | */ 27 | var CameraPopoverHandle = function() { 28 | this.setPosition = function(popoverOptions) { 29 | console.log('CameraPopoverHandle.setPosition is only supported on iOS.'); 30 | }; 31 | }; 32 | 33 | module.exports = CameraPopoverHandle; 34 | 35 | }); 36 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/platform_www/plugins/cordova-plugin-headercolor/www/HeaderColor.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-headercolor.HeaderColor", function(require, exports, module) { 2 | var headerColor = { 3 | tint: function (color, successCallback, errorCallback) { 4 | cordova.exec(successCallback, errorCallback, 'HeaderColor', 'tint', [color]); 5 | } 6 | } 7 | 8 | if (!window.plugins) { window.plugins = {}; } 9 | 10 | window.plugins.headerColor = headerColor; 11 | return window.plugins.headerColor; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/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 edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | # Project target. 13 | target=android-26 14 | android.library.reference.1=CordovaLib 15 | cordova.system.library.1=com.android.support:support-v4:24.1.1+ -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-land-hdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-hdpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-land-ldpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-ldpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-land-mdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-mdpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-land-xhdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-xhdpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-land-xxhdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-xxhdpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-land-xxxhdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-land-xxxhdpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-port-hdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-hdpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-port-ldpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-ldpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-port-mdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-mdpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-port-xhdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-xhdpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-port-xxhdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-xxhdpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/drawable-port-xxxhdpi/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/drawable-port-xxxhdpi/screen.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/mipmap-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-ldpi/icon.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/platforms/android/res/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | VueJS Cordova Sample 4 | @string/app_name 5 | @string/launcher_name 6 | 7 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/settings.gradle: -------------------------------------------------------------------------------- 1 | // GENERATED FILE - DO NOT EDIT 2 | include ":" 3 | include ":CordovaLib" 4 | -------------------------------------------------------------------------------- /cordova_app/platforms/android/wrapper.gradle: -------------------------------------------------------------------------------- 1 | //This file is intentionally just a comment 2 | -------------------------------------------------------------------------------- /cordova_app/plugins/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/.gitkeep -------------------------------------------------------------------------------- /cordova_app/plugins/android.json: -------------------------------------------------------------------------------- 1 | { 2 | "prepare_queue": { 3 | "installed": [], 4 | "uninstalled": [] 5 | }, 6 | "config_munge": { 7 | "files": {} 8 | }, 9 | "installed_plugins": { 10 | "cordova-plugin-camera": { 11 | "PACKAGE_NAME": "vuejs.cordova.sample" 12 | }, 13 | "cordova-plugin-dialogs": { 14 | "PACKAGE_NAME": "vuejs.cordova.sample" 15 | }, 16 | "cordova-plugin-flashlight": { 17 | "PACKAGE_NAME": "vuejs.cordova.sample" 18 | }, 19 | "cordova-plugin-geolocation": { 20 | "PACKAGE_NAME": "vuejs.cordova.sample" 21 | }, 22 | "cordova-plugin-headercolor": { 23 | "PACKAGE_NAME": "vuejs.cordova.sample" 24 | }, 25 | "cordova-plugin-statusbar": { 26 | "PACKAGE_NAME": "vuejs.cordova.sample" 27 | }, 28 | "cordova-plugin-vibration": { 29 | "PACKAGE_NAME": "vuejs.cordova.sample" 30 | }, 31 | "cordova-plugin-whitelist": { 32 | "PACKAGE_NAME": "vuejs.cordova.sample" 33 | }, 34 | "phonegap-nfc": { 35 | "PACKAGE_NAME": "vuejs.cordova.sample" 36 | } 37 | }, 38 | "dependent_plugins": {} 39 | } -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-android-window-background/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 WINTER AGENCY 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-android-window-background/cordova-window-background-strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-android-window-background/cordova-window-background-styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/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 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/android-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/android-fail.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/android-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/android-success.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/blackberry-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/blackberry-fail.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/blackberry-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/blackberry-success.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/browser-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/browser-fail.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/browser-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/browser-success.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/firefox-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/firefox-fail.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/firefox-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/firefox-success.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/fireos-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/fireos-fail.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/fireos-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/fireos-success.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/ios-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/ios-fail.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/ios-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/ios-success.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/ubuntu-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/ubuntu-fail.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/ubuntu-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/ubuntu-success.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/windows-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/windows-fail.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/windows-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/windows-success.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/wp8-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/wp8-fail.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/doc/img/wp8-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/doc/img/wp8-success.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/src/android/xml/provider_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/src/ios/UIImage+CropScaleOrientation.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import 21 | 22 | @interface UIImage (CropScaleOrientation) 23 | 24 | - (UIImage*)imageByScalingAndCroppingForSize:(CGSize)targetSize; 25 | - (UIImage*)imageCorrectedForCaptureOrientation; 26 | - (UIImage*)imageCorrectedForCaptureOrientation:(UIImageOrientation)imageOrientation; 27 | - (UIImage*)imageByScalingNotCroppingForSize:(CGSize)targetSize; 28 | 29 | @end -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/src/ubuntu/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/back.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/src/ubuntu/shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/shoot.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-left.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-middle.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-camera/src/ubuntu/toolbar-right.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/tests/ios/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/tests/ios/CDVCameraTest.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/tests/ios/CDVCameraTest/CDVCameraTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/tests/ios/doc/ja/README.md: -------------------------------------------------------------------------------- 1 | 19 | 20 | # CDVCamera の iOS のテスト 21 | 22 | `Node.js` `コルドバ`ios をプルするをインストールする必要があります。. 23 | 24 | コルドバ ios をインストールします。 25 | 26 | npm install 27 | 28 | 29 | 現在のフォルダーに. 30 | 31 | # Xcode からテスト 32 | 33 | 1. `CDVCameraTest.xcworkspace`ファイルを起動します。 34 | 2. スキーム] ドロップダウン メニューから"CDVCameraLibTests"を選択します。 35 | 3. クリックし、`再生`ボタンを押し、テストを実行する`レンチ`のアイコンを選択 36 | 37 | # コマンドラインからテスト 38 | 39 | npm test -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/tests/ios/doc/ko/README.md: -------------------------------------------------------------------------------- 1 | 19 | 20 | # CDVCamera에 대 한 iOS 테스트 21 | 22 | `Node.js` `코르도바` ios에서를 설치 해야. 23 | 24 | 코르도바-ios를 설치 하는 첫번째는: 25 | 26 | npm install 27 | 28 | 29 | 현재 폴더에.... 30 | 31 | # Xcode에서 테스트 32 | 33 | 1. `CDVCameraTest.xcworkspace` 파일을 시작 합니다. 34 | 2. 구성표 드롭 다운 메뉴에서 "CDVCameraLibTests"를 선택 35 | 3. 클릭 하 고 `재생` 버튼에는 테스트를 실행 하려면 `공구 모양` 아이콘을 선택 36 | 37 | # 명령줄에서 테스트 38 | 39 | npm test -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/tests/ios/doc/zh/README.md: -------------------------------------------------------------------------------- 1 | 19 | 20 | # CDVCamera 的 iOS 測試 21 | 22 | 您需要安裝`node.js`拉`科爾多瓦 ios`中. 23 | 24 | 第一次安裝科爾多瓦 ios: 25 | 26 | npm install 27 | 28 | 29 | 在當前資料夾中。 30 | 31 | # 從 Xcode 測試 32 | 33 | 1. 啟動`CDVCameraTest.xcworkspace`檔。 34 | 2. 從方案下拉式功能表中選擇"CDVCameraLibTests" 35 | 3. 按一下並堅持`播放`按鈕,然後選擇要運行的測試的`扳手`圖示 36 | 37 | # 從命令列測試 38 | 39 | npm test -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/tests/ios/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-camera-test-ios", 3 | "version": "1.0.0", 4 | "description": "iOS Unit Tests for Camera Plugin", 5 | "author": "Apache Software Foundation", 6 | "license": "Apache Version 2.0", 7 | "dependencies": { 8 | "cordova-ios": "*" 9 | }, 10 | "scripts": { 11 | "test": "xcodebuild -scheme CordovaLib && xcodebuild test -scheme CDVCameraLibTests -destination 'platform=iOS Simulator,name=iPhone 5'" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/tests/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-camera-tests", 3 | "version": "2.4.1-dev", 4 | "description": "", 5 | "cordova": { 6 | "id": "cordova-plugin-camera-tests", 7 | "platforms": [] 8 | }, 9 | "keywords": [ 10 | "ecosystem:cordova" 11 | ], 12 | "author": "", 13 | "license": "Apache 2.0" 14 | } 15 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-camera/www/CameraPopoverHandle.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /** 23 | * @ignore in favour of iOS' one 24 | * A handle to an image picker popover. 25 | */ 26 | var CameraPopoverHandle = function() { 27 | this.setPosition = function(popoverOptions) { 28 | console.log('CameraPopoverHandle.setPosition is only supported on iOS.'); 29 | }; 30 | }; 31 | 32 | module.exports = CameraPopoverHandle; 33 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/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 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/src/ios/CDVNotification.bundle/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/src/ios/CDVNotification.bundle/beep.wav -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/src/wp/notification-beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/src/wp/notification-beep.wav -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/tests/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-dialogs-tests", 3 | "version": "1.3.3-dev", 4 | "description": "", 5 | "cordova": { 6 | "id": "cordova-plugin-dialogs-tests", 7 | "platforms": [] 8 | }, 9 | "keywords": [ 10 | "ecosystem:cordova" 11 | ], 12 | "author": "", 13 | "license": "Apache 2.0" 14 | } 15 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 24 | Cordova Notification Plugin Tests 25 | Apache 2.0 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/www/blackberry10/notification-beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/blackberry10/notification-beep.wav -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/danger-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/danger-press.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/danger.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/default.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/gradient.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/pattern.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-dialogs/www/firefoxos/recommend.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-flashlight/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Eddy Verbruggen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-flashlight/src/ios/Flashlight.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface Flashlight : CDVPlugin 4 | 5 | - (void)available:(CDVInvokedUrlCommand*)command; 6 | - (void)switchOn:(CDVInvokedUrlCommand*)command; 7 | - (void)switchOff:(CDVInvokedUrlCommand*)command; 8 | 9 | @end -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-geolocation/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 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-geolocation/src/wp/GeoLocation.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed under the Apache License, Version 2.0 (the "License"); 3 | you may not use this file except in compliance with the License. 4 | You may obtain a copy of the License at 5 | 6 | http://www.apache.org/licenses/LICENSE-2.0 7 | 8 | Unless required by applicable law or agreed to in writing, software 9 | distributed under the License is distributed on an "AS IS" BASIS, 10 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | See the License for the specific language governing permissions and 12 | limitations under the License. 13 | */ 14 | 15 | using System; 16 | using System.Collections.Generic; 17 | using System.Runtime.Serialization; 18 | using System.Threading; 19 | using System.Device.Location; 20 | 21 | namespace WPCordovaClassLib.Cordova.Commands 22 | { 23 | /// 24 | /// This is a command stub, the browser provides the correct implementation. We use this to trigger the static analyzer that we require this permission 25 | /// 26 | public class Geolocation 27 | { 28 | /* Unreachable code, by design -jm */ 29 | private void triggerGeoInclusion() 30 | { 31 | new GeoCoordinateWatcher(); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-geolocation/tests/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-geolocation-tests", 3 | "version": "2.4.3-dev", 4 | "description": "", 5 | "cordova": { 6 | "id": "cordova-plugin-geolocation-tests", 7 | "platforms": [] 8 | }, 9 | "keywords": [ 10 | "ecosystem:cordova" 11 | ], 12 | "author": "", 13 | "license": "Apache 2.0" 14 | } 15 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-headercolor/README.MD: -------------------------------------------------------------------------------- 1 | # cordova-plugin-headercolor 2 | 3 | **HeaderColor** is a cordova plugin to change color of header in multitask view. Android devices. 4 | 5 | 6 | 7 | ## Supported Platforms 8 | 9 | - Android 10 | 11 | ## Installation 12 | 13 | Cordova: 14 | 15 | cordova plugin add https://github.com/tomloprod/cordova-plugin-headercolor 16 | 17 | ## Usage 18 | 19 | This plugin exports an object with one method called "tint": 20 | 21 | ```javascript 22 | window.plugins.headerColor.tint("#becb29"); 23 | ``` 24 | 25 | You can also specify the header color in your `config.xml`: 26 | 27 | ```xml 28 | 29 | ``` 30 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-headercolor/headercolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-headercolor/headercolor.png -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-headercolor/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HeaderColor 6 | HeaderColor is a cordova plugin to change color of header in multitask view. Android devices. 7 | MIT 8 | cordova, ionic, header color, android 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-headercolor/www/HeaderColor.js: -------------------------------------------------------------------------------- 1 | var headerColor = { 2 | tint: function (color, successCallback, errorCallback) { 3 | cordova.exec(successCallback, errorCallback, 'HeaderColor', 'tint', [color]); 4 | } 5 | } 6 | 7 | if (!window.plugins) { window.plugins = {}; } 8 | 9 | window.plugins.headerColor = headerColor; 10 | return window.plugins.headerColor; 11 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-statusbar/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 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-statusbar/RELEASENOTES.md: -------------------------------------------------------------------------------- 1 | ### 2.4.1 (Dec 27, 2017) 2 | * [CB-13712](https://issues.apache.org/jira/browse/CB-13712) (iOS): fix overlaysWebView reset on rotation (#92) 3 | 4 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-statusbar/tests/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-statusbar-tests", 3 | "version": "2.2.3-dev", 4 | "description": "", 5 | "cordova": { 6 | "id": "cordova-plugin-statusbar-tests", 7 | "platforms": [] 8 | }, 9 | "keywords": [ 10 | "ecosystem:cordova" 11 | ], 12 | "author": "", 13 | "license": "Apache 2.0" 14 | } 15 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-statusbar/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 26 | Cordova StatusBar Plugin Tests 27 | Apache 2.0 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/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 | 7 | This product includes software developed by Joerg Wiedenmann under the zlib license (http://www.gzip.org/zlib/zlib_license.html) 8 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/src/blackberry10/native/device/libVibration.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-vibration/src/blackberry10/native/device/libVibration.so -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/src/blackberry10/native/simulator/libVibration.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/cordova-plugin-vibration/src/blackberry10/native/simulator/libVibration.so -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/src/browser/Vibration.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | module.exports = { 23 | vibrate: function (success, fail, milliseconds) { 24 | console.log('Vibration is not supported'); 25 | return false; 26 | } 27 | }; 28 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/src/firefoxos/VibrationProxy.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | module.exports = { 23 | 24 | vibrate: function (success, fail, milliseconds) { 25 | if (navigator.notification.vibrate) { 26 | navigator.vibrate(milliseconds); 27 | } else { 28 | console.log('cordova/plugin/firefoxos/vibration, vibrate API does not exist'); 29 | } 30 | } 31 | }; 32 | 33 | require('cordova/exec/proxy').add('Vibration', module.exports); 34 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/src/ios/CDVVibration.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import 21 | #import 22 | #import 23 | #import 24 | 25 | @interface CDVVibration : CDVPlugin {} 26 | 27 | - (void)vibrate:(CDVInvokedUrlCommand*)command; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/src/ios/CDVVibration.m: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import "CDVVibration.h" 21 | 22 | @implementation CDVVibration 23 | 24 | - (void)vibrate:(CDVInvokedUrlCommand*)command 25 | { 26 | AudioServicesPlaySystemSound(kSystemSoundID_Vibrate); 27 | } 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/src/tizen/VibrationProxy.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | module.exports = { 23 | vibrate: function (milliseconds) { 24 | if (navigator.vibrate) { 25 | navigator.vibrate(milliseconds); 26 | } 27 | } 28 | }; 29 | 30 | require('cordova/tizen/commandProxy').add('Vibration', module.exports); 31 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/src/windows/Vibration/.npmignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ 3 | *.suo -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/tests/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-vibration-tests", 3 | "version": "2.1.5-dev", 4 | "description": "", 5 | "cordova": { 6 | "id": "cordova-plugin-vibration-tests", 7 | "platforms": [] 8 | }, 9 | "keywords": [ 10 | "ecosystem:cordova" 11 | ], 12 | "author": "", 13 | "license": "Apache 2.0" 14 | } 15 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 26 | Cordova Vibration Plugin Tests 27 | Apache 2.0 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /cordova_app/plugins/cordova-plugin-vibration/www/blackberry10/vibrate.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | var vibrate = function (duration) { 23 | navigator.vibrate(duration); 24 | }; 25 | 26 | module.exports = vibrate; 27 | -------------------------------------------------------------------------------- /cordova_app/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 | -------------------------------------------------------------------------------- /cordova_app/plugins/phonegap-nfc/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2011-2015 Chariot Solutions 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /cordova_app/plugins/phonegap-nfc/doc/read_tag_1_basic_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/phonegap-nfc/doc/read_tag_1_basic_app.png -------------------------------------------------------------------------------- /cordova_app/plugins/phonegap-nfc/doc/read_tag_2_dump_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/phonegap-nfc/doc/read_tag_2_dump_tag.png -------------------------------------------------------------------------------- /cordova_app/plugins/phonegap-nfc/doc/read_tag_3_payload_as_string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/plugins/phonegap-nfc/doc/read_tag_3_payload_as_string.png -------------------------------------------------------------------------------- /cordova_app/plugins/phonegap-nfc/src/webworks/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | Built phonegap-nfc-${platform} for distribution 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /cordova_app/plugins/phonegap-nfc/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 6 | PhoneGap NFC Plugin Tests 7 | Apache 2.0 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /cordova_app/res/README.md: -------------------------------------------------------------------------------- 1 | 21 | 22 | Note that these image resources are not copied into a project when a project 23 | is created with the CLI. Although there are default image resources in a 24 | newly-created project, those come from the platform-specific project template, 25 | which can generally be found in the platform's `template` directory. Until 26 | icon and splashscreen support is added to the CLI, these image resources 27 | aren't used directly. 28 | 29 | See https://issues.apache.org/jira/browse/CB-5145 30 | -------------------------------------------------------------------------------- /cordova_app/res/icon/android/icon-36-ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/android/icon-36-ldpi.png -------------------------------------------------------------------------------- /cordova_app/res/icon/android/icon-48-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/android/icon-48-mdpi.png -------------------------------------------------------------------------------- /cordova_app/res/icon/android/icon-72-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/android/icon-72-hdpi.png -------------------------------------------------------------------------------- /cordova_app/res/icon/android/icon-96-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/android/icon-96-xhdpi.png -------------------------------------------------------------------------------- /cordova_app/res/icon/bada-wac/icon-48-type5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/bada-wac/icon-48-type5.png -------------------------------------------------------------------------------- /cordova_app/res/icon/bada-wac/icon-50-type3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/bada-wac/icon-50-type3.png -------------------------------------------------------------------------------- /cordova_app/res/icon/bada-wac/icon-80-type4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/bada-wac/icon-80-type4.png -------------------------------------------------------------------------------- /cordova_app/res/icon/bada/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/bada/icon-128.png -------------------------------------------------------------------------------- /cordova_app/res/icon/blackberry/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/blackberry/icon-80.png -------------------------------------------------------------------------------- /cordova_app/res/icon/blackberry10/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/blackberry10/icon-80.png -------------------------------------------------------------------------------- /cordova_app/res/icon/ios/icon-57-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/ios/icon-57-2x.png -------------------------------------------------------------------------------- /cordova_app/res/icon/ios/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/ios/icon-57.png -------------------------------------------------------------------------------- /cordova_app/res/icon/ios/icon-72-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/ios/icon-72-2x.png -------------------------------------------------------------------------------- /cordova_app/res/icon/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/ios/icon-72.png -------------------------------------------------------------------------------- /cordova_app/res/icon/tizen/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/tizen/icon-128.png -------------------------------------------------------------------------------- /cordova_app/res/icon/webos/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/webos/icon-64.png -------------------------------------------------------------------------------- /cordova_app/res/icon/windows-phone/icon-173-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/windows-phone/icon-173-tile.png -------------------------------------------------------------------------------- /cordova_app/res/icon/windows-phone/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/windows-phone/icon-48.png -------------------------------------------------------------------------------- /cordova_app/res/icon/windows-phone/icon-62-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/icon/windows-phone/icon-62-tile.png -------------------------------------------------------------------------------- /cordova_app/res/screen/android/screen-hdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-hdpi-landscape.png -------------------------------------------------------------------------------- /cordova_app/res/screen/android/screen-hdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-hdpi-portrait.png -------------------------------------------------------------------------------- /cordova_app/res/screen/android/screen-ldpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-ldpi-landscape.png -------------------------------------------------------------------------------- /cordova_app/res/screen/android/screen-ldpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-ldpi-portrait.png -------------------------------------------------------------------------------- /cordova_app/res/screen/android/screen-mdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-mdpi-landscape.png -------------------------------------------------------------------------------- /cordova_app/res/screen/android/screen-mdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-mdpi-portrait.png -------------------------------------------------------------------------------- /cordova_app/res/screen/android/screen-xhdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-xhdpi-landscape.png -------------------------------------------------------------------------------- /cordova_app/res/screen/android/screen-xhdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/android/screen-xhdpi-portrait.png -------------------------------------------------------------------------------- /cordova_app/res/screen/bada-wac/screen-type3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/bada-wac/screen-type3.png -------------------------------------------------------------------------------- /cordova_app/res/screen/bada-wac/screen-type4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/bada-wac/screen-type4.png -------------------------------------------------------------------------------- /cordova_app/res/screen/bada-wac/screen-type5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/bada-wac/screen-type5.png -------------------------------------------------------------------------------- /cordova_app/res/screen/bada/screen-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/bada/screen-portrait.png -------------------------------------------------------------------------------- /cordova_app/res/screen/blackberry/screen-225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/blackberry/screen-225.png -------------------------------------------------------------------------------- /cordova_app/res/screen/blackberry10/splash-1280x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/blackberry10/splash-1280x768.png -------------------------------------------------------------------------------- /cordova_app/res/screen/blackberry10/splash-720x720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/blackberry10/splash-720x720.png -------------------------------------------------------------------------------- /cordova_app/res/screen/blackberry10/splash-768x1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/blackberry10/splash-768x1280.png -------------------------------------------------------------------------------- /cordova_app/res/screen/ios/screen-ipad-landscape-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-ipad-landscape-2x.png -------------------------------------------------------------------------------- /cordova_app/res/screen/ios/screen-ipad-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-ipad-landscape.png -------------------------------------------------------------------------------- /cordova_app/res/screen/ios/screen-ipad-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-ipad-portrait-2x.png -------------------------------------------------------------------------------- /cordova_app/res/screen/ios/screen-ipad-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-ipad-portrait.png -------------------------------------------------------------------------------- /cordova_app/res/screen/ios/screen-iphone-landscape-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-iphone-landscape-2x.png -------------------------------------------------------------------------------- /cordova_app/res/screen/ios/screen-iphone-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-iphone-landscape.png -------------------------------------------------------------------------------- /cordova_app/res/screen/ios/screen-iphone-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-iphone-portrait-2x.png -------------------------------------------------------------------------------- /cordova_app/res/screen/ios/screen-iphone-portrait-568h-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-iphone-portrait-568h-2x.png -------------------------------------------------------------------------------- /cordova_app/res/screen/ios/screen-iphone-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/ios/screen-iphone-portrait.png -------------------------------------------------------------------------------- /cordova_app/res/screen/tizen/README.md: -------------------------------------------------------------------------------- 1 | 21 | 22 | # Tizen Splash Screen 23 | 24 | Splash screens are unsupported on the Tizen platform. 25 | -------------------------------------------------------------------------------- /cordova_app/res/screen/webos/screen-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/webos/screen-64.png -------------------------------------------------------------------------------- /cordova_app/res/screen/windows-phone/screen-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/res/screen/windows-phone/screen-portrait.jpg -------------------------------------------------------------------------------- /cordova_app/www/cordova_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/cordova_256.png -------------------------------------------------------------------------------- /cordova_app/www/css/app.387bb61b.css: -------------------------------------------------------------------------------- 1 | img.logo[data-v-f50462c0]{display:inline-block;width:90px;padding:20px}img[data-v-4ca4d085]{width:50%;display:block;margin:auto}.container[data-v-3c312abe]{padding:0}#map[data-v-3c312abe]{height:calc(100vh - 50px);width:100%;z-index:1}.loading[data-v-3c312abe]{position:absolute;width:150px;height:150px;bottom:50vh;top:50vh;z-index:200;margin:auto;background-color:#fff;border-radius:5px;left:calc(50% - 50px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;padding:10px} -------------------------------------------------------------------------------- /cordova_app/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/favicon.ico -------------------------------------------------------------------------------- /cordova_app/www/fonts/MaterialIcons-Regular.0509ab09.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/MaterialIcons-Regular.0509ab09.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/MaterialIcons-Regular.29b882f0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/MaterialIcons-Regular.29b882f0.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/MaterialIcons-Regular.96c47680.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/MaterialIcons-Regular.96c47680.eot -------------------------------------------------------------------------------- /cordova_app/www/fonts/MaterialIcons-Regular.da4ea5cd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/MaterialIcons-Regular.da4ea5cd.ttf -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Black.313a6563.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Black.313a6563.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Black.59eb3601.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Black.59eb3601.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-BlackItalic.cc2fadc3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-BlackItalic.cc2fadc3.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-BlackItalic.f75569f8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-BlackItalic.f75569f8.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Bold.50d75e48.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Bold.50d75e48.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Bold.b52fac2b.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Bold.b52fac2b.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-BoldItalic.4fe0f73c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-BoldItalic.4fe0f73c.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-BoldItalic.94008e69.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-BoldItalic.94008e69.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Light.c73eb1ce.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Light.c73eb1ce.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Light.d26871e8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Light.d26871e8.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-LightItalic.13efe6cb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-LightItalic.13efe6cb.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-LightItalic.e8eaae90.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-LightItalic.e8eaae90.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Medium.1d659482.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Medium.1d659482.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Medium.90d16760.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Medium.90d16760.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-MediumItalic.13ec0eb5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-MediumItalic.13ec0eb5.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-MediumItalic.83e114c3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-MediumItalic.83e114c3.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Regular.35b07eb2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Regular.35b07eb2.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Regular.73f0a88b.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Regular.73f0a88b.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-RegularItalic.4357beb8.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-RegularItalic.4357beb8.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-RegularItalic.f5902d5e.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-RegularItalic.f5902d5e.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Thin.ad538a69.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Thin.ad538a69.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-Thin.d3b47375.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-Thin.d3b47375.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-ThinItalic.5b4a33e1.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-ThinItalic.5b4a33e1.woff2 -------------------------------------------------------------------------------- /cordova_app/www/fonts/Roboto-ThinItalic.8a96edbb.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/Roboto-ThinItalic.8a96edbb.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/materialdesignicons-webfont.443b30cd.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/materialdesignicons-webfont.443b30cd.eot -------------------------------------------------------------------------------- /cordova_app/www/fonts/materialdesignicons-webfont.53dc8616.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/materialdesignicons-webfont.53dc8616.ttf -------------------------------------------------------------------------------- /cordova_app/www/fonts/materialdesignicons-webfont.b60a2303.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/materialdesignicons-webfont.b60a2303.woff -------------------------------------------------------------------------------- /cordova_app/www/fonts/materialdesignicons-webfont.d89054b1.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/fonts/materialdesignicons-webfont.d89054b1.woff2 -------------------------------------------------------------------------------- /cordova_app/www/index.html: -------------------------------------------------------------------------------- 1 | vuejs-cordova-sample
-------------------------------------------------------------------------------- /cordova_app/www/vuejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/cordova_app/www/vuejs.png -------------------------------------------------------------------------------- /public/cordova_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/public/cordova_256.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | vuejs-cordova-sample 9 | 10 | 11 | 12 | 13 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /public/vuejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/public/vuejs.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4software/vuejs-cordova-sample/a91737dca83524816c852a40fbb720f090b4b6ae/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Drawer.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 35 | -------------------------------------------------------------------------------- /src/components/Loader.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /src/components/MyToolbar.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 43 | -------------------------------------------------------------------------------- /src/i18n.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import VueI18n from 'vue-i18n' 3 | 4 | Vue.use(VueI18n) 5 | 6 | function loadLocaleMessages () { 7 | const locales = require.context('./locales', true, /[A-Za-z0-9-_,\s]+\.json$/i) 8 | const messages = {} 9 | locales.keys().forEach(key => { 10 | const matched = key.match(/([a-z0-9]+)\./i) 11 | if (matched && matched.length > 1) { 12 | const locale = matched[1] 13 | messages[locale] = locales(key) 14 | } 15 | }) 16 | return messages 17 | } 18 | 19 | export default new VueI18n({ 20 | locale: process.env.VUE_APP_I18N_LOCALE || 'en', 21 | fallbackLocale: process.env.VUE_APP_I18N_FALLBACK_LOCALE || 'en', 22 | messages: loadLocaleMessages() 23 | }) 24 | -------------------------------------------------------------------------------- /src/libs/index.js: -------------------------------------------------------------------------------- 1 | export const nativeAlert = (message, title) => { 2 | if(navigator.notification) { 3 | navigator.notification.alert(message, () => {}, title, 'Ok'); 4 | }else{ 5 | alert(message); 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "VueJS Cordova Sample", 3 | "showSample": "Show code samples", 4 | "drawer": { 5 | "home": "Home", 6 | "vibration": "Vibration", 7 | "camera": "Camera", 8 | "flash": "Flash", 9 | "localisation": "Localisation", 10 | "nfc": "Nfc" 11 | }, 12 | "see_on_github": "See On Github", 13 | "getPosition": "Obtaining Position", 14 | "positionNotAvailable": "Can’t get your position", 15 | "startVibration": "Start vibration", 16 | "flashlight": { 17 | "start": "Start flashlight", 18 | "stop": "Stop flashlight", 19 | "notAvailable": "Plugin not installed" 20 | }, 21 | "nfcText": { 22 | "waitingTag": "Scan a tag…", 23 | "tagSerial": "Serial number", 24 | "notAvailable": "Your mobile is not compatible.", 25 | "showSettings": "Enable NFC", 26 | "history": "History", 27 | "noHistory": "Empty" 28 | }, 29 | "takePhoto": "Take a picture", 30 | "error": "Not available" 31 | } -------------------------------------------------------------------------------- /src/locales/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Exemples VueJS + Cordova", 3 | "showSample": "Afficher les examples", 4 | "drawer": { 5 | "home": "Accueil", 6 | "vibration": "Vibreur", 7 | "camera": "Camera", 8 | "flash": "Flash", 9 | "localisation": "Localisation", 10 | "nfc": "Nfc" 11 | }, 12 | "see_on_github": "Voir sur Github", 13 | "getPosition": "Localisation en cours", 14 | "positionNotAvailable": "Localisation impossible", 15 | "startVibration": "Démarrer la vibration", 16 | "flashlight": { 17 | "start": "Allumer la lampe torche", 18 | "stop": "Éteindre la lampe torche", 19 | "notAvailable": "Plugin Cordova non installé" 20 | }, 21 | "nfcText": { 22 | "waitingTag": "En attente d’un tag…", 23 | "tagSerial": "Numéro de série", 24 | "notAvailable": "Votre mobile est incompatible.", 25 | "showSettings": "Activer le NFC", 26 | "history": "Historique", 27 | "noHistory": "Aucun historique" 28 | }, 29 | "takePhoto": "Prendre une photo", 30 | "error": "Non disponible" 31 | } -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import '@babel/polyfill'; 2 | import Vue from 'vue'; 3 | import vuetify from './plugins/vuetify'; 4 | import './plugins/vuetify-extra'; 5 | import App from './App.vue'; 6 | import router from './router/index'; 7 | import i18n from './i18n'; 8 | 9 | Vue.config.productionTip = false 10 | 11 | const init = () => { 12 | new Vue({ 13 | vuetify, 14 | router, 15 | i18n, 16 | render: h => h(App) 17 | }).$mount('#app') 18 | }; 19 | 20 | // Wait for the deviceready event to start the render 21 | document.addEventListener("deviceready", () => { 22 | // eslint-disable-next-line 23 | console.log("Ready, Render the App"); 24 | init(); 25 | }); 26 | 27 | // If we are not in Cordova, manually trigger the deviceready event 28 | const isCordovaApp = (typeof window.cordova !== "undefined"); 29 | if (!isCordovaApp){ 30 | document.dispatchEvent(new CustomEvent("deviceready", {})); 31 | } -------------------------------------------------------------------------------- /src/plugins/vuetify-extra.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue'; 2 | import messageDialog from 'vuetify-vuejs-messagedialog'; 3 | 4 | Vue.use(messageDialog); -------------------------------------------------------------------------------- /src/plugins/vuetify.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Vuetify from 'vuetify' 3 | import '@mdi/font/css/materialdesignicons.css' 4 | import 'vuetify/dist/vuetify.min.css' 5 | import 'roboto-fontface/css/roboto/roboto-fontface.css'; 6 | import 'material-design-icons-iconfont/dist/material-design-icons.css'; 7 | 8 | const vuetify = new Vuetify({ icons: {iconfont: 'mdi'}}); 9 | Vue.use(Vuetify, vuetify); 10 | 11 | export default vuetify; -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Router from 'vue-router' 3 | import Home from '@/views/Home' 4 | import Vibration from '@/views/Vibration' 5 | import Flash from '@/views/Flash' 6 | import Camera from '@/views/Camera' 7 | import Nfc from '@/views/Nfc' 8 | import Localisation from '@/views/Localisation' 9 | 10 | Vue.use(Router); 11 | 12 | export default new Router({ 13 | routes: [ 14 | { 15 | path: '/', 16 | name: 'Home', 17 | component: Home 18 | },{ 19 | path: '/vibration', 20 | name: 'Vibration', 21 | component: Vibration 22 | },{ 23 | path: '/flash', 24 | name: 'Flash', 25 | component: Flash 26 | },{ 27 | path: '/camera', 28 | name: 'Camera', 29 | component: Camera 30 | },{ 31 | path: '/nfc', 32 | name: 'Nfc', 33 | component: Nfc 34 | },{ 35 | path: '/localisation', 36 | name: 'Localisation', 37 | component: Localisation 38 | } 39 | ] 40 | }) -------------------------------------------------------------------------------- /src/views/Camera.vue: -------------------------------------------------------------------------------- 1 | // Require Cordova plugin : cordova-plugin-camera 2 | 3 | 9 | 40 | 41 | 48 | -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 24 | 25 | 32 | -------------------------------------------------------------------------------- /src/views/Vibration.vue: -------------------------------------------------------------------------------- 1 | // Require Cordova plugin : cordova-plugin-vibration 2 | 3 | 8 | 9 | 25 | -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | pluginOptions: { 3 | i18n: { 4 | locale: 'fr', 5 | fallbackLocale: 'en', 6 | localeDir: 'locales', 7 | enableInSFC: false 8 | } 9 | }, 10 | 11 | publicPath: '', 12 | outputDir: 'cordova_app/www', 13 | assetsDir: undefined, 14 | runtimeCompiler: undefined, 15 | productionSourceMap: undefined, 16 | parallel: undefined, 17 | css: undefined 18 | } 19 | --------------------------------------------------------------------------------