There is no debug.keystore file in the .android folder.

Someone with whom I help with the application needs to find its debug.keystore-mine in my .android folder, but when I navigate there on my computer, it is not there.

Do I need to do something to make it appear? Where is he / how can he be generated again?

+50
android keystore
Dec 20 '11 at 2:09 p.m.
source share
6 answers

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

But if this does not work, you can create it manually by doing:

 keytool -genkey -v -keystore ~/.android/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US" 
+128
Jun 11 2018-12-12T00:
source share

If she uses Eclipse, go to Windows -> Settings

Choose Android → Build

There you will see the default debug storage: "Path"

See if you can find it there.

+20
Dec 20 '11 at 2:58 a.m.
source share

debug.keystore is created automatically at the first build that uses it.

+5
Dec 20 2018-11-11T00:
source share

In Windows 7, I had to create the file manually using the proposed John command. Remember to include the path in a pair of double quotes (").

+1
Mar 31 '13 at 7:23
source share

I don’t know how it works magically! I deleted my debug.keystore, built my project again and looked for debug.keystore in the default location ~ / .android / debug.keystore, did not find debug.keystore.

Create the project again and find debug.keystore, no luck!

Then I open eclipse, go to Windows → Settings, select Android → Build. See the default debug storage: "Path".

Now again I looked for debug.keystore in the default location ~ / .android / debug.keystore, found debug.keystore. Tried so many times, it worked.

+1
Dec 13 '14 at 1:09
source share

You can create a keystore using this command.

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

+1
Sep 14 '15 at 12:24
source share



All Articles