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 ran into a similar issue with a different set of modules. I was finally able to resolve it by reinstalling the necessary modules via npm but with the --save
flag. i.e. npm install --save module-name
It looks like if you just have the .iml
file in the module folder, it's not enough for the android studio to resolve it.
Good luck.