

$ cordova plugin add cordova-plugin-crosswalk-webview If however you don’t wrap your App with Crosswalk from the CLI you can add it later with: Otherwise your App might experience unexpected behavior on older platforms. It is highly recommended that you opt for the Crosswalk plugin to be installed. The downside is that it will also make your native App package file bigger. Crosswalk ensures that your App will have the same browser runtime (which is also the latest and greatest) on all Android platforms.
#Android web app wrapper install#
It will ask you if you want to install the Crosswalk plugin which applies to Android apps only. It contains the assets of a Cordova project mapped to your Quasar App’s production ready code ( /dist). This command generates a subfolder inside your App named /cordova. Run the following command to wrap your app in your project folder:
#Android web app wrapper how to#
The following steps explain how to wrap your app and add the desired platforms. To transform a Quasar project into a working Cordova app, you need to wrap it initially. As per May 2017 Cordova supports 4.4 and up and click on “Apply” to install the SDKs. Open the “Configure” menu at the bottom of the window: Next step is to install the individual SDKs: Start Android studio by changing into the folder you installed it in and run. PATH= $PATH: $ANDROID_HOME/tools PATH= $PATH: $ANDROID_HOME/platform-tools

Update your ~/.bashrc file to contain the correct paths to your installation of Android Studio: export ANDROID_HOME= " $HOME/Android/Sdk"

You can download the Android Studio here and follow these installation steps afterwards. There are some initial steps you need to take before you can wrap your apps using Cordova:įirst install Cordova globally on your machine: $ npm install -g cordovaĪfter this step you will need to install the Android platform SDK on your machine. Won’t work with any other specific starter kits, like “pwa”. The Quasar Cordova wrapper can be installed on top of the default starter kit. After the initial setup you will need to wrap each project individually and add the desired platforms (Android and/or iOS). In the following examples we’ll be using Quasar CLI to manage this. Cordova allows you to wrap your Quasar App into a native mobile App.
