I am importing a library module named \"wear\" in my project and while building, I am getting this:
Error : A problem occurred configuring project \':app\'.
C
I found this error too. So, I noticed that my settings.gradle was searching for a path that didn't exist. Example: (settings.gradle)
project(':YourProjectV1').projectDir = new File('../YourProjectFolderV1/app/');
However, in my filesystem, the path was: ../YourProjectFolderv1
After syncing the names, the project was ok!
I hope that helps.