Android开发系列11 Cordova架构学习 测试工具Ripple Emulator、GapDebug

Ripple Emulator

Ripple Emulator是一个基于浏览器的,可以协助测试cordova app的软件,可以运行于多个操作系统。老版本Ripple 作为Chrome extension安装,需要Chrome浏览器支持。现在可以使用npm安装。

网址:
http://ripple.incubator.apache.org/

安装:

npm install -g ripple-emulator
运行:
命令行把路径指向项目,运行命令:
ripple emulate –path platforms/android/assets/www
使用开发者工具可以看出,模拟器是以一个iframe形式加载的。
Android开发系列11 Cordova架构学习 测试工具Ripple Emulator、GapDebug_第1张图片

GapDebug

https://www.genuitec.com/products/gapdebug/
http://www.raymondcamden.com/2014/7/2/GapDebug-a-new-mobile-debugging-tool
GapDebug 提供一个简单的方式可以调试iOS和Android程序,支持debug,分别需要safari和chrome浏览器的配合使用。

安装

根据不同操作系统,从官网下载后安装。软件比较大,一百多兆,我的公司网络需要3个小时。
下面的配置需要cordova3.3以上版本。

配置

1.修改cordova下的config.xml

修改namespace

<widget 
    xmlns="http://www.w3.org/ns/widgets" 
    xmlns:gap="http://phonegap.com/ns/1.0" 
    xmlns:android="http://schemas.android.com/apk/res/android"
    id="me.app.id" 
    version="1.0.0">

在config.xml下面加下

<gap:config-file platform="android" parent="/manifest">
     <application android:debuggable="true" />
</gap:config-file>

在platforms/android/AndroidManifest.xml里的application字段加上debuggable属性:

<manifest>
     ....
     <application android:debuggable="true" />
     ....
</manifest>

安装usb debugging

android4.4以上版本默认支持usb debugging,
android4.4 以下版本可以使用crosswalk webview控件。

另外,可以安装genymotion emulator 模拟器。
genymotion emulator安装截图:
Android开发系列11 Cordova架构学习 测试工具Ripple Emulator、GapDebug_第2张图片

安装chrome

设置手机,允许usb debugging.

Android开发系列11 Cordova架构学习 测试工具Ripple Emulator、GapDebug_第3张图片

你可能感兴趣的:(android,Android开发,测试工具)