4

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.

3
  • a .directory is always "invisible" thats the purpose of that . - you can still go (cd .android) there or rm -rf ".android" (no idea if that works on a mac - it should on linux) Commented Mar 20, 2012 at 22:36
  • that's what i just did, thanks Commented Mar 20, 2012 at 22:37
  • removing debug.keystore worked for me. It is probably in the C:/ Commented Oct 12, 2012 at 19:04

2 Answers 2

14

Remove debug.keystore from your user Android directory.

Sign up to request clarification or add additional context in comments.

1 Comment

Well this will work , but where is debug.keystore ? Windows -> Preferences Select Android -> Build Check for "Default debug keystore: "
6

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.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.