问题描述
我在使用Ubuntu。我正在开发与谷歌地图应用程序。对于我注册一个apikey。我跟着这个指令下面链接的链接文字
I am using Ubuntu. I am developing apps with Google Maps. For that I am registering for an apikey. I followed the instruction in this following Link link text
这是该指令,我得到了你的签名证书的MD5指纹,另外我有密钥库,但我不能能够获得SDK调试证书的MD5指纹,为了这个,我跟着称道的keytool -list -alias androiddebugkey \ -keystore的.keystore \ -storepass机器人-keypass机器人。
from this instruction i got MD5 Fingerprint of Your Signing Certificate,also i have keystore ,But i cant able get MD5 Fingerprint of the SDK Debug Certificate, for this I followed the commend keytool -list -alias androiddebugkey \ -keystore .keystore \ -storepass android -keypass android.
我根据我的应用程序位置指定的path_to_debug_keystore位置。但文我执行了表彰
I specified the path_to_debug_keystore location according to my application location. But wen i execute that commend
我得到的庆典:我释放-key.keystore:权限被拒绝我不知道这称道会我用它来获取SDK调试Certificate.can这个MD5指纹任何人给我这种情况的解决方案。
I get the "bash: my-release-key.keystore: Permission denied." I dont know which commend will i use to get this MD5 Fingerprint of the SDK Debug Certificate.can any one give me the solution for this.
在此先感谢,问候,Lakshmanan提供。
Thanks in advance, regards, Lakshmanan.
推荐答案
获取反斜杠去掉,如果你打字这一切都在一行。因此,它应该是这样的:
Get rid of the backslashes if you are typing this all on one line. Hence, it should look like:
keytool -list -alias androiddebugkey -keystore debug.keystore -storepass android -keypass android
(假设你在调试密钥库所在的目录,也就是〜/ .android
的Ubuntu上运行这一点)
(assuming you are running this in the directory where your debug keystore resides, which is ~/.android
on Ubuntu)
这篇关于不能得到的SDK调试证书的MD5指纹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!