Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 232
Tsunaze Avatar asked Nov 30 '22 06:11

Tsunaze


2 Answers

Remove debug.keystore from your user Android directory.

like image 111
munir Avatar answered Dec 05 '22 02:12

munir


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.

like image 35
Tsunaze Avatar answered Dec 05 '22 02:12

Tsunaze