Issue with crosswalk plugin installation

Currently, I am in the process of adding the crosswalk plugin to my cordova app designed for android version 3.6.3. Everything seems fine until I encounter an issue during the download process. While running the npm install -g cordova-android-crosswalk command to download the crosswalk node module works perfectly, I face an error when attempting to run the cordova-android-crosswalk command to download the actual crosswalk plugin.

The error message that pops up is: "-Error: Command failed: C:\Windows\system32\cmd.exe /s /c "SET ANDROID_HOME=$(dirname $(dirname $(which android))) && cd platforms/android/CordovaLib/ && android update project --subprojects --path . --target "android-23" && ant debug && cd .. && rm -Rf ant-gen && rm -Rf ant-build" The system cannot find the path specified."

I have tried looking for solutions and came across a similar problem faced by another user. Unfortunately, the solution provided did not work for me. You can view the details of the issue here https://github.com/tylerbuchea/cordova-android-crosswalk/issues/1

If anyone has encountered this problem before or knows how to resolve it, please help. Here is a screenshot displaying the error screen shot. Thank you in advance.

Answer №1

Have you considered upgrading to Cordova 4.x? The latest version includes support for the new pluggable Crosswalk WebView. You can find more information at

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Transferring information from Android application to PHP server

I am currently running a PHP form on a WAMP server within a local network. However, when attempting to run the file, I encounter an error as shown in the screenshot. My goal is to send data from my Android app to the PHP form. Additionally, the Android app ...

Implementing an npm-installed package in Laravel: A step-by-step guide

Apologies for the newbie question, but I'm completely new to package management systems, especially npm. Normally, I just link my CSS/Scripts to CDNs. However, I am currently working on a Laravel app that requires a more advanced <select> eleme ...

Laravel has not been properly initialized

Recently, I've been exploring Laravel 5.3 and vue.js and I'm trying to make a GET request to fetch some user data from my database. I'm utilizing components in this project. Here is a snippet from my app.js file: require('./bootstrap ...

Guide on obtaining JSON data in an android application through a PHP file?

I am a beginner in Android development and I have recently created a simple data fetching application. However, I am facing an issue where I am only able to retrieve the value of one variable from my PHP file, even though both variables are present in the ...

What is the best way to parse JSON data received from an Android device using PHP?

I am having an issue with my android emulator where it is sending a request to a PHP script to access MySQL data. I have checked the PHP script by manually giving values to the SQL query and I can retrieve the data in my Android emulator. However, I am fac ...

The JSON index is beyond the range [0..1)

I have been attempting to retrieve data from a MySql database using Volley in a JSONArray. The PHP script used to fetch rows from the table is shown below: <?php ob_start(); header('Content-Type: application/json'); $con=mysqli_connect("local ...

Guide to setting up npm pug-php-filter in conjunction with gulp

I'm having trouble setting up pug-php-filter (https://www.npmjs.com/package/pug-php-filter) with gulp in order to enable PHP usage in my Pug files. Any assistance would be greatly appreciated. ...

Transferring information from an Android device

I am having trouble sending data from an Android device to PHP. Despite my attempts, I am unable to identify the mistake I have made. How can I rectify this issue? Below is the snippet of the Android code that I have implemented: public class php_connect ...

Strip the quotes from the JSON output

Need help removing double quotes from my JSON output. Here's the issue: [{"id":"1","nom":"Magasin Jardins 2","ville":"Paris","latlng":["36.85715,10.127245"]} I want to remove quotes from the latlng value to get this result: [36.85715,10.127245] He ...

Contemplating the protection of an Android online platform

In the process of developing an Android app to connect to a http server, I have implemented a web service that sends JSON data to a PHP script on the server. This PHP script then accesses the desired database and inserts the JSON objects. However, my focu ...

The error message displayed in Andriod Studio states that there is an issue converting the value "<br" of type java.lang.String to a JSONObject,

I am currently in the process of developing an android app using Android Studio that involves sending data from a User Registration activity to a database. The goal is for the user to input all the required information, click the register button, and have ...

Link the application with the nearby MySQL database

Currently, I am utilizing this video tutorial in my attempt to establish a connection between an Android application and a MySQL database hosted locally. The PHP script appears to be functioning correctly when accessed locally through Internet Explorer, ho ...

Containerize your Laravel/VueJS application using Docker

My goal is to dockerize my Laravel application, and I have come across various tutorials that seem helpful: Tutorial 1 Tutorial 2 Tutorial 3 Tutorial 4 In my development Dockerfile, I have defined the necessary steps for setting up the environment. Ho ...

Uploading video files using XMLHttpRequest encountered an error on a particular Android device

One of our testers encountered an issue where they failed to upload a video file (.mp4) on a specific Android mobile phone. Interestingly, the same file uploaded successfully on an iPhone and another Android device. To investigate further, I attempted to ...

Successful Ajax requests in web browsers, but encountering issues in PhoneGap environment

My cross-domain request works perfectly in Firefox, Chrome, and other browsers. However, as soon as I compile it with PhoneGap, it stops working. Ajax: function createCORSRequest(method, url){ var xhr = new XMLHttpRequest(); if ("withCredentials ...

Transfer image data in JSON format by compressing it into a base64 string from an Android device to a PHP web

I am attempting to upload an image (compressed in base64) as a JSONObject from an Android device to a web service using PHP. I have tried using HttpURLConnection with the POST method. Here is my code in Android: try { JSONObject params = new ...

loading images from a server in a dynamic manner within a list view on an Android application

I'm relatively new to android development and I've created a database with different user profiles, each containing an image URL. Now, I want to fetch the image URLs from the database for a specific user and display them in an Android ListView. ...

What is the best way to generate a JSON object in an Android project by merging data from various tables in a MySQL database?

I need help converting the results of my API to a JSON Object using JAVA. Can someone provide guidance on how to achieve this? $sql1="SELECT s.* , c.*,u.* FROM schedule_ s,course_t c, u user_t WHERE c.course_crn=p.course_crn and s.teache ...

Encountering issues with loading the database on the Android application

My challenge lies in using a single database for both an Android application and a website. This setup allows the admin to update the website and app simultaneously through one admin panel. The database, which consists of 15 tables, presents a roadblock ...

Obtaining data from MySQL and transferring it to SQLite with a specified parameter in Android

I'm working on a .java class that retrieves data from MySQL. How can I ensure that the data fetched from MySQL is specific to the userID logged into mobile? Here's the code snippet that fetches all data from MySQL: package a.a; import java.u ...