Questions tagged [crosswalk-runtime]

Crosswalk is a web runtime for HTML5 applications. It provides all the features of a modern browser, combined with deep device integration and an API for adding native extensions.

Crosswalk runtime can be used for creating HTML5 application with a dedicated runtime that can be run on multiple platforms without any dependency for webview. It can be used for creating application that uses HTML5 features like WebRTC, hardware-accelerated WebGL support and bleeding edge HTML5 features.

Crosswalk runtime based HTML5 applications can be built for Android (version 4.0 and above), Tizen Mobile, Windows, Mac OS X and Linux.

What is Crosswalk for?

If you are a developer working with web technologies, Crosswalk 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.

What can Application Developers do with Crosswalk runtime?

  • Use all the features available in modern web browsers: HTML5, CSS3, JavaScript.
  • Access the latest recommended and emerging web standards.
  • Use experimental APIs not available in mainstream web browsers.
  • Control the upgrade cycle of an application by distributing it with its own runtime.
  • Add custom extensions to an application, to leverage platform features not exposed by Crosswalk or the standardized web platform.

Crosswalk is open source project, released under a BSD licence. The project was founded by Intel's Open Source Technology Center. Intel XDK (HTML5 development environment) can be used to build Android apps with Crosswalk runtime.

306 questions
1
vote
1 answer

webgl doesn't work on crosswalk framework for Android

I've trying all the samples of the Crosswalk engine and also compiled myself the sample project but I couln't make WebGl work in Crosswalk And it suposes to work Here is the tutorial I've been…
butelo
  • 1,653
  • 1
  • 18
  • 29
0
votes
1 answer

My app not able to find a crosswalk dependency and R file

I have followed this link https://crosswalk-project.org/documentation/android/embedding_crosswalk_rvw.html to embed crosswalk in my android project.When I try to install,my app is crashing with below er java.lang.NoClassDefFoundError: Failed…
kavie
  • 2,154
  • 4
  • 28
  • 53
0
votes
1 answer

XWalkResourceClient.shouldInterceptLoadRequest seems not working properly

I'm trying to override url loading. Custom http requests are implemented through okhttp library. App seems starting fine but right after start it closes. I've double checked that returned mime-type set as text/html and so on. So where is a problem?…
yuliskov
  • 1,379
  • 15
  • 16
0
votes
1 answer

Realm conflicts with Crosswalk

in my app I have to use Realm and Crosswalk libs. I have imported Realm from gradle like this: Project gradle dependencies { classpath "io.realm:realm-gradle-plugin:2.2.1" } //---------------------- App module gradle apply plugin:…
user5583732
0
votes
1 answer

Android activity doesn't close completely

I have a javascript interface that I am using with crosswalk, and it has a closeActivity method. The interface looks like this: public class JavaScriptInterface { private Activity activity; public JavaScriptInterface(Activity activity) { …
Get Off My Lawn
  • 34,175
  • 38
  • 176
  • 338
0
votes
1 answer

Camera not showing on android device

I am trying to use Crosswalk to display the user's camera. The issue I am having is that it isn't displaying, and I don't know why. The console does not display any errors either. Camera
Get Off My Lawn
  • 34,175
  • 38
  • 176
  • 338
0
votes
1 answer

Runtime Exception when running cordova app

I have a problem with running cordova application both on emulator and an Android device.It's an app created with phonegap-template-react-hot-loader template. Here is a adb log: E/AndroidRuntime( 2704): FATAL EXCEPTION: main E/AndroidRuntime( 2704):…
0
votes
1 answer

Admob pro not working as expected with Cordova

I'm trying to show some ads with my app but it seems that unless I autoshow and Interstitial ad, it won't work. It throws no errors, I prepare the ad like i should and use "AdMob.showInterstitial()". But it does absolutely…
Caleb Prenger
  • 1,537
  • 4
  • 13
  • 13
0
votes
1 answer

Export release key while using shared crosswalk platform in android eclipse

i am using x_walk_view as its web view in shared mode platform for android version 4.4 and below version.It works fine but when i try to export in a release mode,It starts giving error "YOUR APP STOPPED WORKING".does i have to enable something to…
0
votes
1 answer

phonegap build app doesnot work on tablets?

i created a html5 game in construct2 and compiled it using phonegap build. compiled apk works fine in android mobile phones. but when i installed it on tablets and bluestack, its not opening. i get a black screen for half second and the app exists.…
0
votes
1 answer

Doesn't Xwalk (Crosswalk) have caching for offline mode?

I'm using Crosswalk instead of the default Webview on Android and when I use the Webview and i enable caching, if I turn off the wi-fi the pages load from cache. On Crosswalk I don't see this, it just displays a toast with "Unable to reach server"…
AndreiBogdan
  • 10,858
  • 13
  • 58
  • 106
0
votes
0 answers

Ionic 2 app emulate app on Android V4.2.2 shows whitescreen

I am trying to build an ionic 2 app for Android,It works fine for newer versions,but when I tried building it for V4.2.2 the emulator loads app and shows only white screen.I installed crosswalk using both of the below methods: ionic browser add…
0
votes
1 answer

Crosswalk: how to get URL of non-web resource opened in new tab/window

Let's say my Crosswalk view in my Android activity is showing a page like this: Download a PDF How can I intercept the URL of that link? Note that…
ris8_allo_zen0
  • 1,537
  • 1
  • 15
  • 35
0
votes
1 answer

Why can not select "mp3" file in Crosswalk?

I built an app using Cordova and Crosswalk, the version are cordova -v 6.0.0 "name": "cordova-plugin-crosswalk-webview", "version": "1.6.1", In my app I used two input tags to select files:
Calvin
  • 953
  • 1
  • 9
  • 16
0
votes
0 answers

Is it possible to combine interactive 3D content with the camera stream in Ionic?

I'm about to make an iOS/Android app that allows the user to interact with 3D content that overlays the live-stream coming from the device's camera. It's kind of AR-lite I guess as it doesn't need to 'see' the scene or recognise any objects within…