Questions tagged [crosswalk]

The Crosswalk Project is an HTML application runtime, built on open source foundations, which extends the web platform with new capabilities.

Tthe Crosswalk Project enables you to deploy a web application with its own dedicated runtime. This means three things:

  • You can distribute your web application via app stores.

  • Your application won't break in whatever ancient webviews or browsers your audience is using, as you control the runtime and its upgrade cycle.

  • You can build applications without worrying so much about runtime
    differences and quirks: you only have one runtime to deal with.

Visit the project's homepage for more info.

343 questions
29
votes
2 answers

Android In App Subscription always returns the initial receipt, I never get the renewal

I have a problem with my Android app. I am trying to implement a monthly subscription. I have created the IAP, the app is in beta and I am register as a tester. Everything works as expected when purchasing the subscription. I am able to purchase it…
tehmaestro
  • 1,010
  • 2
  • 11
  • 21
19
votes
1 answer

Is there any alternative for the cordova-plugin-crosswalk-webview that is currently maintained?

I have a Cordova project that is using the Android System WebView (as it should by default), but the problem is: The Android is in a wearable device, which means its System WebView component (version 55) is not upgradable; My application needs a…
amiltonjr
  • 323
  • 1
  • 3
  • 9
18
votes
4 answers

Error building xwalk with cordova android

Building a cordova app with xwalk and it's no longer working. ANDROID_HOME=C:\Program Files (x86)\Android\android-sdk JAVA_HOME=C:\Program Files\Java\jdk1.8.0_77 Reading build config file:…
JoshBerke
  • 66,142
  • 25
  • 126
  • 164
16
votes
0 answers

How to resolve the Crosswalk SSL Certificate Error

@Override public void onReceivedSslError(XWalkView view, ValueCallback callback, SslError error) { callback.onReceiveValue(true); } I've changed this code in XWalkCordovaResourceClient class. It allows ignore self signed certificates…
15
votes
4 answers

Ionic 3 project and plugin crosswalk error

I have a Ionic 3 project, when I run "ionic cordova run android --prod" I see This error: ANDROID_HOME=C:\Users\asus\AppData\Local\Android\sdk\ JAVA_HOME=C:\Program Files\Java\jdk1.8.0_131\ Subproject Path: CordovaLib null The…
asv
  • 3,332
  • 7
  • 24
  • 47
13
votes
1 answer

How to add crosswalk webview in my own android library module?

I am in the development of an Android library module which has to include Crosswalk Webview. I create the library using Github Sonatype (https://github.com/sonatype/). It works fine without Crosswalk Webview. I tried the following 3 methods to…
RDY
  • 613
  • 1
  • 9
  • 25
13
votes
0 answers

How to disable Chrome data saver in crosswalk webview?

How do I disable Chrome's "data saver" in crosswalk webview? During development of cordova/ionic app it is massively interfering because it prevents live-reload-injected CSS after about 20-30 seconds.
JoshuaDavid
  • 8,861
  • 8
  • 47
  • 55
12
votes
2 answers

Does the new Android WebView perform the same as CrossWalk WebView

I am using CrossWalk WebView and as you know it extends the app size of 25 MB more, and the app size after installation goes up to 70 MB! One thing I need to know, CrossWalk WebView supports old devices, and make the performance much better by using…
tinyCoder
  • 350
  • 13
  • 37
12
votes
0 answers

How to get html content from XWalkView?

I have tried I did in WebView using JavaScriptInterface. But it is not working. How to get HTML content from XWalkView? In this way I could get HTML from WebView: public class MainActivity extends AppCompatActivity { WebView myWebView; …
Joe Richard
  • 1,520
  • 7
  • 20
  • 31
11
votes
0 answers

cordova + ionic + crosswalk = net::ERR_INSECURE_RESPONSE

I'm building a cordova/ionic app, on my phone (android 6.0.1) works fine, like in chrome (desktop), a few days ago I add crosswalk to get best functionality when I use my old phone (android 4.4.1), but, all requests gets the same error. GET …
justpayas
  • 119
  • 7
11
votes
5 answers

Crosswalk Error about "Request was denied for security"

I use cordova 6.3.1 and crosswalk of cordova plugin 2.1.0 in Android App. I use self certification in server. When I send http post request from cordova app to server, "Request was denied for security" message appeared in screen bottom possion and…
yone
  • 121
  • 1
  • 1
  • 6
11
votes
1 answer

Android: how to exclude devices with webview that doesn't support webGL, i.e. are on the gpu_blacklist

I have an app containing a webview, that runs very poorly on devices where hardware acceleration doesn't work, e.g. some Samsung S4's running 5.0.1 I know from here: Supporting WebGL on Android 5's WebView that I can use Crosswalk and ignore the…
Adam
  • 1,486
  • 3
  • 20
  • 35
11
votes
4 answers

Build error after adding Crosswalk plugin to a Cordova Android project

I'm using the latest cordova android (5.1.0). The project is building and running fine without crosswalk, but after I add the crosswalk plugin using cordova plugin add https://github.com/crosswalk-project/cordova-plugin-crosswalk-webview.git I get…
bumpy
  • 2,002
  • 2
  • 14
  • 19
10
votes
1 answer

is WebRTC using JavaScript available in Android 4(by any means)?

I am trying to make a JavaScript demo of WebRTC work in an Android 4 device. I have tried using Crosswalk, and following the examples, but getUserMedia would not return video. Are there any examples of a setup working anywhere? By my knowledge,…
Damien Golding
  • 1,003
  • 4
  • 15
  • 28
10
votes
1 answer

Crosswalk errors trying to load JNI libraries

The following errors appear when my Android app is starting up: 09-06 12:40:56.787 12976-13134/com.company.MyApp.debug W/chromium: [WARNING:xwalk_external_extension.cc(58)] Error loading extension…
Fugue
  • 416
  • 6
  • 20
1
2 3
22 23