Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where is ADB, Android Debug Bridge, components source code located on Android open source project

From this article, I know the Android Debug Bridge is composed of three components:

  1. ADB Client

  2. ADB Server

  3. Daemon on equipment or emulator

I would like to get deeper understanding of those components from their respective source code. For now, I found:

  1. ADB Client: ./system/core/adb/adb_client

  2. ADB Server: ./system/core/adb/adb

  3. Daemon on equipment or emulator: don't really know where it is located on framework project...

like image 270
shanwu Avatar asked Jan 24 '14 06:01

shanwu


1 Answers

The source code for all 3 parts of ADB is in the same system/core/adb folder.

like image 79
Alex P. Avatar answered Oct 03 '22 00:10

Alex P.