diff options
author | Flavio Lerda <flerda@google.com> | 2015-02-09 12:59:41 +0000 |
---|---|---|
committer | Flavio Lerda <flerda@google.com> | 2015-02-09 13:31:55 +0000 |
commit | 31e37b7aec2e2b7ad1c231401667f7fe56e441e0 (patch) | |
tree | e196152ea98a75d621495d57ab4f75bf6210d52a | |
parent | 6bfe8325b98869392f35d5fc8ea3bd29c538dad8 (diff) | |
download | frameworks_base-31e37b7aec2e2b7ad1c231401667f7fe56e441e0.zip frameworks_base-31e37b7aec2e2b7ad1c231401667f7fe56e441e0.tar.gz frameworks_base-31e37b7aec2e2b7ad1c231401667f7fe56e441e0.tar.bz2 |
Fix command for getting signing key fingerprint.
The command give in the documentation does not work correctly because it
is missing a space. We ran into this while following the instructions to
configure our own project.
Bug: 18025533
Change-Id: I70c4babda84fcc9cf3e950e5396d5059004b7dc1
-rw-r--r-- | docs/html/google/auth/http-auth.jd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/google/auth/http-auth.jd b/docs/html/google/auth/http-auth.jd index 804ba12..7d34d89 100644 --- a/docs/html/google/auth/http-auth.jd +++ b/docs/html/google/auth/http-auth.jd @@ -95,7 +95,7 @@ keytool -exportcert -alias <keystore_alias> -keystore <keystore_path> -lis </pre> <p>For example, you're using a debug-key with Eclipse, then the command looks like this:</p> <pre class="no-pretty-print"> -keytool -exportcert -alias androiddebugkey-keystore ~/.android/debug.keystore -list -v +keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore -list -v </pre> <p>Then the keystore password is "android".</p> </li> |