Taking over RN project from another developer and trying to make a build for Android, however Gradle keeps giving me this issue:
ERROR: Project with path ':unimodules-core' could not be found in project ':@unimodules_react-native-adapter'.
The only solution I could find regarding this is adding settings.gradle file:
include ':@unimodules_react-native-adapter'
project(':@unimodules_react-native-adapter').projectDir = new File(rootProject.projectDir, '../node_modules/@unimodules/react-native-adapter/android')
but this doesn't work for me.
I have linked the native dependecies I have tried npm and yarn
Project is using:
"@unimodules/core": "^3.0.2",
"@unimodules/react-native-adapter": "^3.0.0",
Gradle is directing me to the @unimodules/react-native-adapter/android/build.gradle
file:
apply from: project(":unimodules-core").file("../unimodules-core.gradle")
Any guidance of what could possible be wrong, would greatly be appreciated