6

Anyone know where to find DDMS source code? I want to extend its functionality. Or is there a CLI for this tool instead of the eclipse plugin?

Volo
  • 28,673
  • 12
  • 97
  • 125
bowser
  • 73
  • 1
  • 4

3 Answers3

3

The full sources for DDMS can be found in the git repository. DDMS can be used as a stand-alone SWT app, or integrated with the Eclipse plugin. The common code is factored out into a couple of libraries.

Update: Link updated for JellyBean MR 1.1. The sources went elsewhere in JellyBean MR 2.

fadden
  • 51,356
  • 5
  • 116
  • 166
  • Updated the link with pointer into the new repository on the jb-mr1.1 branch. The sources went elsewhere in jb-mr2. – fadden Jul 25 '13 at 18:17
2

ddmslib is the java library that powers DDMS. Source is here

Nic Strong
  • 6,532
  • 4
  • 35
  • 50
0

The actual source of DDMS is in the Android source itself.

git clone https://android.googlesource.com/platform/tools/base/

sources are in: ddmlib/

rustyx
  • 80,671
  • 25
  • 200
  • 267