如何找到我的Andr​​oid应用程序的MD5指纹我的、指纹、应用程序、oid

由网友(人小鬼大)分享简介:我想注册为Android谷歌地图并请求MD5指纹。如何获得指纹我的应用程序?I'm trying to sign up for Android Google Maps and which requests MD5 fingerprint. How to get the fingerprint out of my ap...

我想注册为Android谷歌地图并请求MD5指纹。如何获得指纹我的应用程序?

I'm trying to sign up for Android Google Maps and which requests MD5 fingerprint. How to get the fingerprint out of my application??

我是新手,密钥库和无法理解的事情,我在网上找到。如此简单的指令AP preciated

I'm newbie to keystore and couldn't understand a thing i find online. so simple instructions appreciated

在此先感谢

推荐答案

您将需要2密钥库。

一个用于调试的目的和 一为发行目的。

One for debug purpose and One for release purpose.

当你正在开发通过Eclipse的应用程序并在模拟器或设备调试它。您将需要调试密钥存储。否则,你将无法看到地图。 调试密钥库已在present到系统中。

While you are developing your application via eclipse and debugging it on simulator or device. You will be needing debug keystores. Otherwise you will not be able to see the map. debug keystore is already present into your system.

尝试找到他们在

Windows Vista: C:Users<user>.androiddebug.keystore

Windows XP: C:Documents and Settings<user>.androiddebug.keystore

OS X and Linux: ~/.android/debug.keystore

打开控制台/到上述地点终端,debug.keystore文件是present和执行

Open console/terminal on to the above location where debug.keystore file is present and execute

keytool -list -keystore debug.keystore

输出会像(preSS只需输入时被要求密码)

Output will be like (press simply enter when password is asked)

rohit@Desktop:~/.android$ keytool -list -keystore debug.keystore
Enter keystore password:  

*****************  WARNING WARNING WARNING  *****************
* The integrity of the information stored in your keystore  *
* has NOT been verified!  In order to verify its integrity, *
* you must provide your keystore password.                  *
*****************  WARNING WARNING WARNING  *****************

Keystore type: JKS
Keystore provider: SUN

Your keystore contains 1 entry

androiddebugkey, 19 Apr, 2011, PrivateKeyEntry, 
Certificate fingerprint (MD5): 00:35:C2:48:65:43:CG:55:41:11:16:F1:4C:11:82:C5
rohit@Desktop:~/.android$ 

复制此MD5指纹值并转到

Copy this MD5 fingerprint value and go to

的 HTTP://$c$c.google.com/android/maps-api-signup.html

您将获得地图密钥在成功注册。把那些在你看来的图形页面元素。

You will get Map Keys On successful signup. Put those in the MapView Element of your view.

您需要生成自己的密钥库,并需要获得地图密钥是相同的。 否则你将无法看到地图上部署你的apk到设备上。

You need to generate your own keystore and need to get Map keys for the same. else you will not be able to see map on deployment of your apk onto the device.

创建您自己的新密钥库,并按照同样的程序生成的密钥存储。 它很容易生成密钥库也。 我只是通过Eclipse导出我的Andr​​oid应用程序,然后通过自己做的一切。

Create a new keystore of your own and follow the same procedure for the generated keystore. Its very easy to generate keystore also. I simply export my android application via eclipse and it then do everything by itself.

希望它帮助:)

阅读全文

相关推荐

最新文章