crosswalk-runtime

What is a difference between intel xdk, appmobi, and crosswalk?

烂漫一生 提交于 2019-12-03 10:07:49
As far as I know they are all from intel, do the same thing, and yet do not mention each other at all. So can someone clear some confusion, what and how they are different. I understand they are for making mobile apps, I checked out appmobi it wasn't much better for any interactive app than phonegap. Other than that I don't know what crosswalk is (maybe it's like cooconjs but with browser in it and asmjs support?). what is intel xdk..this is the most mysterious..is it same as crosswalk? Or are they all variations of cordova After some more research I have found that xdk/appmobi are built on

How can I publish to play store the x86 and ARM apks of my cordova-crosswalk app?

微笑、不失礼 提交于 2019-12-03 07:32:36
问题 My app is developped/published with Cordova and Crosswalk. Crosswalk generates an apk for ARM cpus and another one for x86 cpus. At the moment, when I upload my ARM apk to the play store and then try to upload the x86 one, it prevents me from doing so and display a message that says that I cannot have two apk with the same version code. It seems it's possible to upload on the play store multiple apk files for the same version of an application byt filtering the devices targetted by each apk

Crosswalk crashes Visual Studio Android Emulator

拜拜、爱过 提交于 2019-12-02 06:26:13
问题 This code; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } } And this layout; <org.xwalk.core.XWalkView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/webview" android:layout_width="fill_parent" android:layout_height="fill_parent" /> Seems to succesfully execute, but then afterwards, I'm presuming on display, results in the

Crosswalk Could not resolve all dependencies for configuration ':_armv7DebugCompile'

只愿长相守 提交于 2019-12-01 17:39:10
I successfully build my application with cordova until a few days ago with Crosswalk 18+, today I have this error: * What went wrong: A problem occurred configuring root project 'android'. > Could not resolve all dependencies for configuration ':_armv7DebugCompile'. > Could not resolve org.xwalk:xwalk_core_library:18+. Required by: :android:unspecified > Failed to list versions for org.xwalk:xwalk_core_library. > Unable to load Maven meta-data from https://repo1.maven.org/maven2/org/xwalk/xwalk_core_library/maven-metadata.xml. > Could not GET 'https://repo1.maven.org/maven2/org/xwalk/xwalk

Ionic starter can't run on crosswalk-lite: Unable to start activity ComponentInfo

a 夏天 提交于 2019-12-01 16:52:20
问题 I am starting ionic app with crosswalk-lite, but it can't run on both real device & genymotion. ionic start myApp tabs npm install bower install ionic serve # <-- I test on browser & it's work ionic browser add crosswalk-lite ionic build android # <-- success to compile ionic run android # <-- run on genymotion, and it's crash When I do adb logcat , it show error java.lang.RuntimeException: Unable to start activity ComponentInfo{com.ionicframework.myapp} I build with: node v0.10.36 ionic 1.4

whitelist not working ionic with crosswalk

≡放荡痞女 提交于 2019-12-01 14:36:45
问题 I created a working app using ionic. there was no problem with fetching data from my site and everything was good. I then went to add crosswalk to it and now i get the error when i run it on my android phone: W/XWalkCordovaResourceClient():URL blocked by whitelist: http://example.com/api/ In the top level config.xml i have tried each of the following (not all 3 at once) and reran it (ionic run android) with the same results: <access origin="*"/> <access origin="http://www.example.com/*"/>

Crosswalk call Java method from JavaScript

橙三吉。 提交于 2019-12-01 10:31:47
I'm using crosswalk now. I need to call a Java method when a user clicks a button in the HTML, which may look like: <a href="#" onclick="callJava()">Start</a> I'm not sure if Crosswalk extension is what I wanted, which seems to be so heavy-weighted just for calling a Java function. Is there a simpler way to do this? Or should I use Cordova with Crosswalk in this case? If you are only using XWalkView as an embedded view, the addJavascriptInterface is sufficient to inject Java object into XWalkView(JavaScript), which is just like the addJavascriptInterface in android.webkit.WebView: https:/

Incorrect APKs versionCode order when building multiple APKs for both 32bit and 64 bit platforms with crosswalk

若如初见. 提交于 2019-11-30 23:08:43
I need to build the ionic/cordova application for both 32bit (armeabi-v7a and x86) and 64bit (arm64-v8a and x86_64) platforms. I build four separate APKs using commands ionic build android --release and ionic build android --release --xwalk64bit All goes well except that the versionCode (for version set to 0.0.11) is a little off - see below The problem is that x86 and x86_64 must have higher versionCode then ARM apks. This is required because x86 devices are able to handle ARM libs but there is no ARM device able to handle x86 libs. So we must keep the version code of x86 APK higher than the

Is it possible to use crosswalk-cordova inside of Android Studio?

只愿长相守 提交于 2019-11-29 10:35:42
问题 Is it possible to build a crosswalk-cordova app inside of android studio? It looks like you need to use ANT at this point. Does anyone know if this is on the roadmap now that android studio is out of beta? Our team just built an android wear app so we need to use android studio to create a build and we'd like to start using crosswalk. 回答1: I put together some instructions here: https://diego.org/2015/01/07/embedding-crosswalk-in-android-studio/ You can do this with gradle by adding the maven

How to debug Crosswalk webview remotely?

☆樱花仙子☆ 提交于 2019-11-28 11:39:11
I'm trying to use XWalkView in Android 5. When I try to inspect an XWalkView in chrome://inspect, I can see the name of the app that is running, but no options for inspection. I also attempted in Canary, but it never got past USB auth for debug. How can I use chrome dev tools to debug XWalkView? To debug xwalk webview remotely is similar to webview except the webview config. a. Config your chrome and device for debugging. Refer to google articles or SO post . b. Config your webivew for debugging. ( difference between webview and xwalkview ) Refer to xwalkview doc . For xwalkview,