Android无法确定调试密钥库的位置

时间:2014-01-10 21:10:31

标签: android

在护目镜文档中找到您的SHA-1指纹:

“keytool -exportcert -alias androiddebugkey -keystore path-to-debug-or-production-keystore -list -v”

我无法弄清楚调试密钥库的位置。我尝试使用finder在debug-keystore上进行搜索,但它是空的

3 个答案:

答案 0 :(得分:0)

  

我尝试使用finder在debug-keystore上进行搜索,但它是空的

首先,文件名为debug.keystore,带点(.),而不是短划线(-)。

引用the documentation

  

文件名是debug.keystore,并在第一次构建项目时创建。默认情况下,它存储在与Android虚拟设备(AVD)文件相同的目录中:

     

OS X和Linux:〜/ .android /

     

Windows Vista和Windows 7:C:\ Users \ your_user_name.android \

答案 1 :(得分:0)

如果您使用的是Eclipse,请打开Eclipse Preferences,然后转到Android>建立。您将看到一个包含调试密钥库位置的字段。

对我来说(Mac OSX):/Users/username/.android/debug.keystore

答案 2 :(得分:0)

基本上您必须查找包含.android

的隐藏文件夹debug.keystore文件夹

如果您使用 Eclipse ,则必须遵循以下路径:

Preferences > Android > Build > ../android/debug.keystore 

我无法通过 Android Studio 找到它,并且非常感谢更新编辑:)