EExcel 丞燕快速查詢2

EExcel 丞燕快速查詢2
EExcel 丞燕快速查詢2 https://sandk.ffbizs.com/

android webview performance crosswalk

Now HAHA!!

https://diego.org/2015/01/07/embedding-crosswalk-in-android-studio/
https://crosswalk-project.org/documentation/embedding_crosswalk/crosswalk_aar.html
=====================================

https://www.timroes.de/2013/11/23/old-webview-vs-chromium-webview/


Have you looked at crosswalk? https://crosswalk-project.org/ It’s a chromium web runtime that can be packaged with the app, so you get a benefit on 4.x devices, not just kitkat. It has more features (like webrtc) and sometimes outperforms chromium webview.

https://crosswalk-project.org/

==============
https://gist.github.com/butelo/9365587

1:R.layout.activity_xwalk_embed_lib -> R.layout.xxxxx
2: R.menu.xwalk_embed_lib -> R.menu.xxxx
3: AndroidManifest.xml

<uses-permission android:name="android.permission.INTERNET">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE">

==============
use this
https://groups.google.com/forum/#!msg/adt-dev/nQobKd2Gl_8/Z5yWAvCh4h4J

problem:libxwalkcore.so can be soft.

just do armeabi-v7a.jar is have lib/armeabi-v7a/libxwalkcore.so and jar put in libs
==============
test for this, use android studio, have big problem:libxwalkcore.so

can't load libxwalkcore.so

http://comments.gmane.org/gmane.comp.web.crosswalk.help/250

find this and follow, then can understand....: There are different between android studio and ADT in so library. We must edit build.gradle file to copy libs into build/native-libs dir. for example,

use ver 7.xxxxx
libs already put xwalk_core_library_java.jar and armeabi-v7a/libxwalkcore.so

and

AndroidManifest.xml need to put

<uses-permission android:name="android.permission.INTERNET">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE">

this is for load libxwalkcore.so success, need to put

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE">


=====================================
Finialy, I can't use this.

If really want to use , please use verion for Cordova + Crosswalk backend. it's easy success.
or use Intel XDK