I found this check:
if (new File(rootProject.projectDir.parentFile, ‘package.json’).exists()) {
apply from: project(":unimodules-core").file("…/unimodules-core.gradle")
} else {
throw new GradleException(
"‘unimodules-core.gradle’ was not found in the usual React Native dependency location. " +
“This package can only be used in such projects. Are you sure you’ve installed the dependencies properly?”)
}
in expo-file-system build.gradle file,
this check is wrong as hybrid apps can have react project anywhere.
is there any work around this?