zoukankan      html  css  js  c++  java
  • SAP UI5 Custom Cordova plugin的调试方法

    Suppose you have packaged a UI5 application into a mobile device via Cordova, and in your UI5 application you have consumed some Cordova plugin which provides native API in mobile platform, and you would like to debug your application. In this blog, I will show steps how to debug UI5 JavaScript code and Cordova plugin code in Android platform.

    I will continue to use the UI5 application Step by step to create a custom Cordova plugin for Android and consume it in your UI5 application described in my previous blog for demo.

    How to debug UI5 code running in Android device

    Suppose you would like to debug whether your UI5 code runs correctly in a real Android device. The steps to debug in Chrome is almost the same as when you debug the UI5 application running in PC, only a few additional steps are necessary.

    (1) Enable USB debug option for your Android device. And then connect your mobile device with your PC, open Chrome development tool:

    Now your should see your Android device here:

    (2) Launch the UI5 application in your mobile device, then you should find a new entry appears under your device name. Click button “Inspect”:

    (3) Now switch to Sources tab, and all loaded html and JavaScript resources are visible.

    There is nothing new starting from here: you could just set breakpoint in whatever positions. For example, in the screenshot below I set a breakpoint in line 38, where the plugin written in Java is to be called.

    (4) Re-launch the application, and now breakpoint is triggered.
    Press F11, and we can still step into and check how Cordova plugin written by Java is called:

    The magic of call from JavaScript to Java starts in line 967. For more detail see this blog How is JavaScript code in OData offline plugin delegated to native Java code in Android.

    How to debug Cordova plugin developed in Java

    I am using Android development studio to debug the Java code.

    Suppose the root folder of my project is JerryUI5HelloWorld, just open the folder android under platforms folder, as highlighted below.

    Once the project is opened via Android studio, it looks like as below:

    Launch the application under debug mode:

    Repeat the operation in UI, and the breakpoint set previously is triggered now.

    You can still switch between different callstack frame to observe how the custom plugin is called by Cordova framework in Java side.

    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    c# 遍历DataTable
    c# 判断网络状态
    c# 发送Http 请求
    c# 处理Json字符串
    环境搭建(Nginx + PHP7 + Mysql + 运行ThinkPHP5项目)
    c# 获取时间戳
    php 处理 byte
    微信小程序 滚动至元素底部
    mysql 删除 多个字段相同的 重复的 数据
    微信小程序 跑马灯效果
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13586132.html
Copyright © 2011-2022 走看看