zoukankan      html  css  js  c++  java
  • 德尔福 XE5 安卓调试

    https://stackoverflow.com/questions/2604727/how-can-i-connect-to-android-with-adb-over-tcp?page=2&tab=votes#tab-top

    http://delphi.org/2013/10/wireless-android-debugging-with-delphi-xe5/

    Previously I blogged about how to connect to an emulator on a remote (or the host) machine. That also works for hardware connected to remote machines. But sometimes you want to work with hardware that isn’t even connected at all. Not to worry, here is how to wirelessly connect and debug with your favorite development tool. One note though, WiFi slower than a USB connection, so you will see a little delay sometimes.

    Requirements:

    • A machine (Mac or PC) you can connect the Android device to that has ADB (Android Debug Bridge) installed. This is part of the Android SDK. As well as necessary ADB USB Drivers (required on Windows). This can be your development machine, or another machine.
    • A non-segmented wireless network that both your development machine and Android device are connected. (Segmenting prevents two connected devices from connecting to each other).

    These commands work with ADB (Android Debug Bridge). It is easiest if you add it to your path. By default it is found in the following location, but you can install it anywhere on your system (Select the “Use An Existing IDE” option when downloading).

    C:UsersPublicDocumentsRAD Studio12.0PlatformSDKsadt-bundle-windows-x86-20130522sdkplatform-tools

    First you need to connect your Android device to any computer. With USB debugging turned on, verify you have access to the device via ADB with the following command:

    Command:

    adb devices

    Output:

    List of devices attached 
    8605fa72        device

    If the list is empty, then you need to enable USB debugging and make sure you have the USB ADB Bridge driver for your device installed.

    Once ADB is setup, you can get the IP address with the following command:

    adb shell netcfg|grep wlan0

    Which should give you output like:

    wlan0  UP     10.20.5.88/24  0x00001043 2a:32:11:42:aa:3c

    Then put the device in TCPIP mode with the command:

    adb kill-server
    adb tcpip 5555

    Then on your machine that is running Delphi XE5 go to the command window and type (with the IP address from above):

    adb connect 10.20.5.88

    Then you can verify it worked from that same command prompt

    Command:

    adb devices

    Output:

    List of devices attached
    10.20.5.88:5555   device

    And now you can connect to that device wirelessly from Delphi. Like I mentioned before, this is slower, so expect some delays on deploy and responding to breakpoints.

    There is some more information on Stack Overflow, including some different options if you have a rooted Android device.

  • 相关阅读:
    洛谷 P3355 骑士共存问题
    Redis 安装
    Java 集合:(十八) Map接口
    并发编程——Java版【目录】
    Java 集合:(十七) Queue 常用接口:BlockingQueue 子接口
    Java 集合:(十六) Queue 常用接口:Deque 子接口
    Java 集合:(十五) Queue 子接口
    Java 集合:(番外篇一) ArrayList线程不安全性
    第十三章:StringTable
    Java 集合:(十三) Set实现类:LinkedHashSet
  • 原文地址:https://www.cnblogs.com/marklove/p/9502486.html
Copyright © 2011-2022 走看看