Invalid VCS root mapping - 3 errors on my project

后端 未结 8 1606
闹比i
闹比i 2021-02-18 22:58

When I import project to Android Studio, I found this errors:

  • Error:No resource found that matches the given name (at \'label\' with value \'@s

相关标签:
8条回答
  • 2021-02-18 23:58

    The three Gradle Build errors seems separate from the invalid VCS root mapping error.

    • For the invalid VCS root mapping error, you can go to the root of the project C:\Users\alfayed\Desktop\awesome-chat, and create a git repo by git init.

    • For the three Gradle Build errors, you can debug the details with the source code.

    0 讨论(0)
  • 2021-02-19 00:00

    When you clone your project from git make sure you do:

    git clone --recursive YOUR-GIT-URL
    

    or if you have already cloned then to fix it:

    git submodule init
    git submodule update
    
    0 讨论(0)
提交回复
热议问题