Android Emulator can't start, 'cause of wrong folder

后端 未结 6 1340
后悔当初
后悔当初 2020-12-02 10:07

I\'m just starting to use Eclipse and ADT and I have some issues, the Android Emulator don\'t start :

[2011-07-10 15:32:25 - Android_FirstApp] --------------         


        
6条回答
  •  死守一世寂寞
    2020-12-02 10:40

    This is a bug in the ADT Plugin. For a workaround until it is fixed use a NTFS symbolic link.

    I have a C: drive for windows 7 and a D: drive for all my work and data. After installing windows 7 I relocate all my special folders from C:\Users\John Doe to D:\John Doe. The ADT Plugin is trying to load the emulator from C: when it and the configure files are on D: (PANIC: Could not open etc.). NTFS can get the ADT Plugin to read from D: using a NTFS symbolic link. Open a command prompt in C:\Users\John Doe (obviously use your user name), use the mklink command.

    mklink /J "C:\Users\John Doe\.android" "D:\John Doe\.android"

    Now when the ADT plugin is trying to reference .android on C:, NTFS sends the request to D: and the emulator starts correctly.

提交回复
热议问题