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 this errors too, it turns out that there are a library path changed. Im using react-native-maps
version 1.4
In settings.gradle
change the react-native-maps dependency path to
...
include ':react-native-maps'
project(':react-native-maps').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-maps/lib/android')
It seems to me the installation manual is not updated