Crosswalk comes to Ionic


http://blog.ionic.io/crosswalk-comes-to-ionic/


Updated as of 4/13/2015


Ionic and Crosswalk

With our latest CLI update, we’re excited to introduce the ability to package modern rendering engines within your app for Cordova, starting with Crosswalk for Android. Crosswalk provides Android developers a bundled Chrome webview for their projects, resulting in better performance and predictability!

Our team is passionate about making hybrid mobile development awesome, and we’re so grateful to our committed, enthusiastic community for helping us succeed in our mission.

Getting Started With Crosswalk

First, make sure you get the latest Ionic CLI, and then you can easily create an app, add the Android platform, and add Crosswalk to the project.

New Project

npm install ionic -g
ionic start my_app
cd my_app
ionic browser add crosswalk
ionic run android

Previous Ionic Project

npm install ionic -g
cd existing_app
ionic browser add crosswalk
ionic run android
Specifying a version of Crosswalk

ionic browser list #Find the version of Crosswalk you want.
ionic browser add crosswalk@10.39.235.15 #Install stable version 10.39.235.15.

Building for separate architectures

Update: Previously, you needed an environment variable to build multiple architectures. Due to some changes to the underlying Cordova Android library, you no longer need to specify the environment variable to build multiple APKs. This should happen by default by running ionic build android.

If you have a device connected and run ionic run android, it will auto detect that architecture type and only build and run for that device.

Volatility

Please note that running these steps will alter your Android project, so you’ll want to use version control to handle changes from Crosswalk.

These commands should set you up with a custom Android build with Crosswalk. You can run the project as you normally would.

To confirm that it was, in fact installed, open Chrome DevTools and confirm that it says “Chrome 37” or greater.

We’d love to ask you to help out the cause by testing and giving feedback. This is your chance to help several open source projects at once: Cordova, Crosswalk, and Ionic!

10 Questions You Might Have:

We’ve put together this Q & A to answer questions you might have about Crosswalk. Please don’t hesitate to contact us if you have questions that aren’t answered here!

  1. What is Crosswalk?
    • Crosswalk is an open source project that allows you to specify a version of Chrome to use as your web browser in Android. The compiled app will have your code hosted inside of this Chrome webview.
  2. Why should I use Crosswalk?
    • Older versions of Android devices (4.0-4.3) use Android’s default browser, which has significantly less performance and standards compliance than modern Chrome. Using Crosswalk gives you a specific and more performant version of Chrome to use on all Android devices, in order to reduce fluctuations and fragmentation among devices.
  3. How does Crosswalk improve Cordova Android apps?
    • By designating a specific version of Chrome, you can skip the unexpected behavior from browsers that vary from device to device. Crosswalk also provides improved performance and ease of debugging.
  4. What can I expect, performance and size-wise?
    • In older Android Devices (4.0-4.3), you’ll see about a 10x improvement of both HTML/CSS rendering and JavaScript performance and CSS correctness. To bundle Chrome, you will see a small (~10-15MB) size increase in your Android Apps.
  5. How do I try it out?
    • npm install -g ionic
  6. How do I report errors?
  7. What should I look for when testing?
    • Improved performance on older Android devices, with the ability to debug using Chrome DevTools.
    • Testing any of the core Cordova plugins, such as Camera, GPS, etc.
    • Report weird behavior while building or running the app.
    • Report differences between using Crosswalk and not; for example, your splash screen no longer shows.
  8. How do I debug with Crosswalk / Chrome?
    • Fire up Chrome DevTools and go to Chrome Inspect Devices.
  9. What are the architectures for Android devices, and why do they exist?
    • There are two main Architectures for Android – x86 and ARM. The reason for the two is that the device providers choose to use a separate processor. With different processors, we’ll need to compile them separately. Using Crosswalk, you may specify that you want two separate builds for x86 / Arm to keep your build size down. If you make a single build, you will have to bundle both versions of Crosswalk (x86/Arm) and have a larger build size (~50-60 MB).
  10. Why the switch to Gradle for Android?
    • The Cordova Android team has decided to move away from Ant towards more of a Gradle-based build scenario. In this upgrade, you may see alternative build messages from Gradle, instead of your normal Ant messages.

CLI Roadmap (tentative)

It’s really important to us that we keep our users informed about what we’re working on. Here’s a roadmap that covers where we’ve been and where we’re going. Thanks for joining us on the journey!

1.3 Milestones (1/7/2014 – 1/12/2015)
  • Crosswalk Browser introduction & installation.
  • Info command for environment-specific info.
  • Error reporting from CLI – helps us respond to errors faster and be proactive about errors.
  • Individual help commands – now the CLI gives more info about the individual commands ionic help serve.
1.3.1 Milestones (1/12/2015 -1/14/2015)
  • Specify a version of Crosswalk to use – ionic browser add crosswalk@10.39.235.15.
  • See all the browsers available to install – ionic browser list. NOTE: Only stable releases are allowed for now.
  • Fixed a bug related to ionic upload.
  • Caching the Crosswalk downloads – once you’ve installed a version in a project, running ionic browser add crosswalk will not re-download the webviews.
1.3.2 Milestones (1/14/2015 – 1/23/2015)
  • Quick fix for the ionic upload command – fixed an issue with the cookies from the request.
1.3.3 Milestones (1/23/2015 – onward)
  • Add a release option that removes unused files and minifies/uglifies to give you smaller builds.
  • Add the ability to specify Beta/Canary builds of Crosswalk.
  • Provide a way to release Android builds post 4.4 without Crosswalk.
  • Make using the CLI easier with tab complete.

Crosswalk Docs

Crosswalk Updates as of 4/13/2015

In the last month, the Ionic CLI has updated the version of Cordova Android that it uses to the latest commits. Some of these changes have caused some issues for users.

Issues running ionic platform add

Users that run ionic platform add android after running ionic browser add crosswalk may run into the following issue:

Plugin doesn't support this project's cordova-android version. cordova-android: 3.7.1, failed version requirement: >=4.0.0-dev

When you run ionic browser add crosswalk, the CLI downloads Cordova Android 4.0.0-dev, along with a Cordova Crosswalk Engine plugin. The Crosswalk plugin requires Cordova Android 4.0.0 and will not work properly without it.

When you run ionic platform add android, you are then removing Cordova Android 4.0.0 and trying to install Cordova Android 3.7.1 (if you are using the latest Cordova CLI).

Right away, this will fail, due to the Crosswalk engine plugin. If you wish to stop using the Crosswalk plugin, please run ionic browser remove crosswalk.

If this was unintentional, simply run ionic browser add crosswalk again to allow the CLI to install that Cordova Android 4.0.0 version. Otherwise, you can run ionic platform add ./engine/cordova-android-c0.6.1 to freshly install the downloaded 4.0.0 version of Cordova Android.

You may also remove the Crosswalk Engine plugin. Find the name ionic plugin ls and then ionic plugin rm cordova-plugin-crosswalk-webview.

Issues with Crosswalk not loading external resources

Using the latest changes from Cordova Android 4.0.0, the Cordova team has removed the Whitelisting capabilities of Cordova to now reside in a whitelist plugin.

This plugin has not been released yet but is required to allow whitelisting to work properly with Cordova android 4.0.

To get around this issue, please install the plugin using this command: ionic plugin add https://github.com/apache/cordova-plugin-whitelist.

That should temporarily get you around that issue until the Cordova team releases that plugin to the Cordova Plugin registry.




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
资源包主要包含以下内容: ASP项目源码:每个资源包中都包含完整的ASP项目源码,这些源码采用了经典的ASP技术开发,结构清晰、注释详细,帮助用户轻松理解整个项目的逻辑和实现方式。通过这些源码,用户可以学习到ASP的基本语法、服务器端脚本编写方法、数据库操作、用户权限管理等关键技术。 数据库设计文件:为了方便用户更好地理解系统的后台逻辑,每个项目中都附带了完整的数据库设计文件。这些文件通常包括数据库结构图、数据表设计文档,以及示例数据SQL脚本。用户可以通过这些文件快速搭建项目所需的数据库环境,并了解各个数据表之间的关系和作用。 详细的开发文档:每个资源包都附有详细的开发文档,文档内容包括项目背景介绍、功能模块说明、系统流程图、用户界面设计以及关键代码解析等。这些文档为用户提供了深入的学习材料,使得即便是从零开始的开发者也能逐步掌握项目开发的全过程。 项目演示与使用指南:为帮助用户更好地理解和使用这些ASP项目,每个资源包中都包含项目的演示文件和使用指南。演示文件通常以视频或图文形式展示项目的主要功能和操作流程,使用指南则详细说明了如何配置开发环境、部署项目以及常见问题的解决方法。 毕业设计参考:对于正在准备毕业设计的学生来说,这些资源包是绝佳的参考材料。每个项目不仅功能完善、结构清晰,还符合常见的毕业设计要求和标准。通过这些项目,学生可以学习到如何从零开始构建一个完整的Web系统,并积累丰富的项目经验。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值