Your project location contains whitespace. (Android Studio)

前端 未结 4 1327
南笙
南笙 2020-12-19 02:52

I am just moved from Eclipse to Android Studio for android application development. I am getting the following warning at the time of creating projects

Your

相关标签:
4条回答
  • 2020-12-19 03:15

    welll this problem also i am getting

    your are browsing that location contain white space mean

    for ex my /c/ documents

    it solution is u have to remove space between tham

    solution my/c/documents

    0 讨论(0)
  • 2020-12-19 03:22

    This will not cause any serious issue. You can continue your regular development. But as you have recently switched to the new environment, so I think it will be easy to move your directory now. If you face any import or export related issue later (when moving the directory would have become harder), then it will be really a pain for you.

    How you can solve this issue: Just change the directory of your workspace to (where there wouldn't be any white space).

    For example: c:/users/documents

    0 讨论(0)
  • 2020-12-19 03:33

    The white space refers to any name in the location that has a space.

    In the example:

    c:/users/MyDocuments

    the location does not have white space. However, the location

    c:/users/My Documents

    has white space. Remove the spaces from the folder names in your location or use underscore to remove the white space from your location.

    0 讨论(0)
  • 2020-12-19 03:35

    I took the UNIX approach, and created a symbolic link to where the directory should be located. On Windows, from a command window:

    mklink /j C:\android-sdk C:\"Program Files"\Android\android-sdk
    
    0 讨论(0)
提交回复
热议问题