Lines Matching refs:debug
35 testing/debugging your application — <em>debug mode</em> — and one for building your
37 …it must be signed before it can install on an emulator or device—with a debug key when build…
38 in debug mode and with your own private key when building in release mode.</p>
40 <p>Whether you're building in debug mode or release mode, you need to use the Ant tool to compile
42 When you build in debug mode, the .apk file is automatically signed by the SDK tools with
43 a debug key, so it's instantly ready for installation onto an emulator or attached
44 development device. You cannot distribute an application that is signed with a debug key.
53 development device by building in debug mode.</p>
71 <p>For immediate application testing and debugging, you can build your application in debug mode
72 and immediately install it on an emulator. In debug mode, the build tools automatically sign your
73 application with a debug key and optimize the package with {@code zipalign}.</p>
75 <p>To build in debug mode:</p>
79 <li>Use Ant to compile your project in debug mode:
81 ant debug
84 …<p>This creates your debug <code>.apk</code> file inside the project <code>bin/</code> directory, …
85 <code><your_project_name>-debug.apk</code>. The file is already signed with
86 the debug key and has been aligned with
225 <p>Your .apk file (signed with either a release or debug key) is in your project {@code bin/}
255 install</code>. This will build your application, sign it with the debug key, and install it on
306 to do this: with a <em>debug key</em> (for immediate testing on an emulator or development
310 debug key at build time. This means that you can compile your application and install it on the
313 key, rather than the debug key generated by the SDK tools.</p>
315 <p>The ADT plugin helps you get started quickly by signing your .apk files with a debug key,
320 own private key, rather than the debug key generated by the SDK tools.</p>
333 <dt><code>ant debug</code></dt>
334 <dd>Builds a debug package. Works on application, library, and test projects and compiles
337 <dt id="emma"><code>ant emma debug</code></dt>
346 <dd>Builds an instrumented debug package. This is generally called automatically when building a
354 <dd>Installs an already compiled debug package. This fails if the <code>.apk</code> is not
374 <dt><code>ant debug installt test</code></dt>
378 <dt><code>ant emma debug install test</code></dt>