There is no debug.keystore in .android folder

后端 未结 10 1766
滥情空心
滥情空心 2020-11-30 19:47

Someone I\'m helping with an application needs to locate her debug.keystore - mine is in my .android folder, but when I navigate there on her computer it is not there.

10条回答
  •  时光取名叫无心
    2020-11-30 20:30

    According to the documentation, performing a build in Eclipse or using ant debug should automatically generate ~/.android/debug.keystore.

    But in case this doesn't work, you can create one manually by running:

    keytool -genkey -v -keystore ~/.android/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"
    

提交回复
热议问题