iOS remote debug & Android remote debug & Chrome & APP iOS remote debugging 如何在 iOS 真机上调试页面 如何使用Web Inspector调试Mobile Safari(iPhone或iPad) https://appletoolbox.com/use-web-inspector-debug-mobile-safari// blogs https://dev.to/rickey_oak/ios-remo…
https://gist.github.com/TomTasche/9690186 ndk-gdb of NDK r9d modified to *always* debug the ":remote"-process of your app     #!/bin/sh # # Copyright (C) The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the &qu…
phonegap debug 最近发现了一个可以调试phonegap的工具  在Google浏览器上调试Android真机的APP  这是好啊!!!跟Mac上的Safari 浏览器一样调试iOS 的APP 一样的方便 ... 虽然只能支持 Android 4.4+ 1.在Google 浏览器中的 地址栏输入 然后看到下面的图片,选中Discover USB devices  然后在点击 inspect 就可以了 chrome://inspect/#devices 但是Android 4.4 以下…
强制开启android webview debug模式使用Chrome inspect https://blog.csdn.net/zhulin2609/article/details/51437821…
Remote Debugging Android Devices //在电脑上远程调试安卓设备 By Kayce Basques Technical Writer at Google By Meggin Kearney Meggin is a Tech Writer Remote debug live content on an Android device from your Windows, Mac, or Linux computer.//远程实时调试安卓设备的内容. TL;DR Set…
启动和关闭ADB服务(adb start-server和adbkill-server) 经作者测试,模拟器在运行一段时间后,adb服务有可能(在Windows进程中可以找到这个服务,该服务用来为模拟器或通过USB数据线连接的真机服务)会出现异常.这时需要重新对adb服务关闭和重启.当然,重启Eclipse可能会解决问题,但那比较麻烦.如果想手工关闭adb服务,可以使用如下命令: 1. adb kill-server 在关闭adb服务后,要使用如下命令启动adb服务: 1. adb start-s…
Android studio Debug效率提升,可以在控制台打印log的同时而不暂停程序的运行,尤其是当遇到复杂交互的时候,比如滑动,拖动,这时候程序暂停执行是特别恶心的.其实你可以更新打印信息而不需要重新编译或者部署. Suspend,找到打得断点,然后右键就会出现下面界面 (or ⇧+⌘/Ctrl+F8) ,把Suspend选项的勾选去掉即可.飞一般的Debug吧.......…
在Android开发中,我们使用android.util.Log来打印日志,方便我们的开发调试.但是这些代码不想在发布后执行,我们并不想在软件发布后调试日志被其他开发者看到,现在我的方法是设置一个全局变量,标记软件为Debug模式还是Release模式.来看下代码: public class Log { private static final boolean DEBUG = true; public static void i(String tag, String msg) { if (DEB…
Android device debug by Charge Only mode Method 1 Connect devices to computer and execute lsusb Find current device's info: Bus 001 Device 006: ID 2717:ff08 2717 is VendorID and ff08 is ProductID Then create /etc/udev/rules.d/51-android.rules (sudo n…
在接入FaceBook第三方登录的时候,需要获取Android Hash Key. Android Hash Key即密钥散列有两种,一种是开发秘钥散列,一种是发布秘钥散列.这里主要介绍如何获取开发秘钥散列Debug Android Hash Key. 步骤如下: 1.到https://code.google.com/archive/p/openssl-for-windows/downloads?authuser=1下载openssl-0.9.8k_X64.zip(电脑64位的),然后解压放在C…