Lines Matching full:code
17 </p><p><code>
26 </code>
28 The <code>-cp</code> option sets the classpath. The initial directory
29 for <code>adb shell</code> may not be what you expect it to be, so it's
33 The <code>dx</code> command accepts lists of individual class files,
34 directories, or Jar archives. When the <code>--output</code> filename
35 ends with <code>.jar</code>, <code>.zip</code>, or <code>.apk</code>,
36 a file called <code>classes.dex</code> is created and stored inside the
39 Run <code>adb shell dalvikvm -help</code> to see a list of command-line
54 <code> -agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=y</code>
59 <code>% <font color="green">adb forward tcp:8000 tcp:8000</font></code>
61 and then connect to it with your favorite debugger (using <code>jdb</code>
64 <code>% <font color="green">jdb -attach localhost:8000</font></code>
74 <code> -agentlib:jdwp=transport=dt_android_adb,suspend=y,server=y</code>
76 Note the <code>transport</code> has changed, and you no longer need to
81 <code>% <font color="green">jdb -attach localhost:8700</font></code>
101 your environment, and several native code libraries are required to support
132 You may see <code>TARGET_BUILD_TYPE=release</code> or <code>=debug</code>
134 <code>lunch</code> command with
135 <code>choosecombo Simulator debug sim eng</code>.
137 Build the world (add a <code>-j4</code> if you have multiple cores):
181 The preparation with <code>dx</code> is the same as before: