I'm getting this error when running Gradle sync:
An exception occurred applying plugin request [id: 'com.callstack.react.brownfield']
> Failed to apply plugin 'com.callstack.react.brownfield'.
> Project with path 'app' could not be found in root project 'android'.
The issue is that we don't have an app project in our setup. Is there a way to configure the plugin to use a different project name?
I tried to add
reactBrownfield {
appProjectName = project(":patient")
}
But it didn't help.