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 have faced same issue when i update android studio 3.0 and following solutions works for me
implementation project(path: ':yourModule', configuration: 'default')
This solution will work if you are using Gradle 4.1 and above and Gradle Plugin Version 3.0.0 and above.
Gradle
Gradle Plugin Version 3.0.0
I hope this will work for you