Tsunaze
Tsunaze

Reputation: 3254

Error generating final archive: Debug certificate expired on

I know how to fix the problem, but the thing is, my .android directory became invisible, and i don't know how to delete it. I tried with command lines like : rmdir /S .android, and it didn't work. I'm on a mac.

Upvotes: 4

Views: 7766

Answers (2)

munir
munir

Reputation: 141

Remove debug.keystore from your user Android directory.

Upvotes: 14

Tsunaze
Tsunaze

Reputation: 3254

It's okay i found it :

On the OSX platform, if you manually remove the ~/.android directory using rm -rf ~/.android, then try to run the emulator, it crashes. This happens because the emulator fails to create a new .android directory before attempting to create the child SDK1.0 directory. To work around this issue, manually create a new .android directory using mkdir ~/.android, then run the emulator. The emulator creates the SDK1.0 directory and starts normally.

And i had to recreate some AVD, that's all.

Upvotes: 6

Related Questions