everybody,
I am facing a weird problem in mac osx. I have installed eclipse(Indigo 64 bit) on my mac machine with ADT r15. and android sdk with API level 7. everything works fine but when i create a virtual device and launch it, i always get error
PANIC: Could not open: /tmp/.android/avd/avd_2.1.ini`
The problem is that eclipse looks for avd at location /tmp/.android/avd/ but avd is actually located at /var/root/.android/avd.
Is there any workaround.
Thanks
N_JOY
This is just a patch but solved my problem. As eclipse is looking for avd inside tmp directory. so i have created .android/avd directory in tmp folder.
NOTE:
you can't create any directory whose name starts with'.'. so you should create it from terminal.and then copy original contents from
/var/root/.android/avdto/tmp/.android/avd/N_JOY.