diff options
author | Scott Main <smain@google.com> | 2010-01-25 18:10:13 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-01-25 18:10:13 -0800 |
commit | 1ce80a4d7a36a3fb72b65a6e915ecec99301a9ba (patch) | |
tree | 6225651e3aea97835c793442fac7edc0689d158d /docs/html/guide/developing/debug-tasks.jd | |
parent | a54bec599a4d49c8586a65a2f570e434cbbf08a2 (diff) | |
parent | bfb8606831d5a5776301733cde3650d237870453 (diff) | |
download | frameworks_base-1ce80a4d7a36a3fb72b65a6e915ecec99301a9ba.zip frameworks_base-1ce80a4d7a36a3fb72b65a6e915ecec99301a9ba.tar.gz frameworks_base-1ce80a4d7a36a3fb72b65a6e915ecec99301a9ba.tar.bz2 |
am bfb86068: am 2a79defa: Merge "docs: add guide to copying and installing the Dev Tools app from the emulator to a device." into eclair
Merge commit 'bfb8606831d5a5776301733cde3650d237870453'
* commit 'bfb8606831d5a5776301733cde3650d237870453':
docs: add guide to copying and installing the Dev Tools app
Diffstat (limited to 'docs/html/guide/developing/debug-tasks.jd')
-rw-r--r-- | docs/html/guide/developing/debug-tasks.jd | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/docs/html/guide/developing/debug-tasks.jd b/docs/html/guide/developing/debug-tasks.jd index 975f699..a980efc 100644 --- a/docs/html/guide/developing/debug-tasks.jd +++ b/docs/html/guide/developing/debug-tasks.jd @@ -80,13 +80,25 @@ href="#additionaldebugging">Debugging and Testing with Dev Tools</a> below.</dd> <h2 id="additionaldebugging">Debugging and Testing with Dev Tools</h2> -<p>With the Dev Tools application, you can turn on a number of settings that will -make it easier to test and debug your applications. The Dev Tools application is automatically -installed on all system images included with the SDK. The source code for the Dev Tools application -is also provided in the SDK samples so that you may build it and then install the application on any -development device.</p> +<p>With the Dev Tools application, you can enable a number of settings on your device that will +make it easier to test and debug your applications.</p> + +<p>The Dev Tools application is installed by default +on all system images included with the SDK, so you can use it with the Android Emulator. If you'd +like to install the Dev Tools application on a real development device, you can copy the +application from your emulator and then install it on your device using ADB. To copy the +application from a running emulator, execute: +</p> +<pre> +adb -e pull /system/app/Development.apk ./Development.apk +</pre> +<p>This copies the .apk file into the current directory. Then install it on your connected device +with:</p> +<pre> +adb -d install Development.apk +</pre> -<p>To get to the development settings page on the emulator, launch the Dev Tools application and +<p>To get started, launch the Dev Tools application and select Development Settings. This will open the Development Settings page with the following options (among others):</p> @@ -132,7 +144,7 @@ following options (among others):</p> can happen during debugging.</dd> </dl> -<p>These settings will be remembered across emulator restarts. </p> +<p>These settings will be remembered across emulator restarts.</p> <h2 id="DebuggingWebPages">Debugging Web Pages</h2> |