从另一个开发人员那里接管了RN项目,并尝试为Android进行构建,但是Gradle一直给我这个问题:
ERROR: Project with path ':unimodules-core' could not be found in project ':@unimodules_react-native-adapter'.
我唯一可以找到的解决方案是添加settings.gradle文件:

include ':@unimodules_react-native-adapter'
project(':@unimodules_react-native-adapter').projectDir = new File(rootProject.projectDir, '../node_modules/@unimodules/react-native-adapter/android')

但这对我不起作用。

我已经联系了本地人的依赖
我已经尝试过npm和yarn

项目正在使用:
 "@unimodules/core": "^3.0.2",
 "@unimodules/react-native-adapter": "^3.0.0",

Gradle将我定向到@unimodules/react-native-adapter/android/build.gradle文件:
apply from: project(":unimodules-core").file("../unimodules-core.gradle")

任何可能出错的指导,将不胜感激

最佳答案

对我来说,解决此问题的方法是完全从依赖项中删除:@unimodules/react-native-adapter

关于android - 在项目 ':unimodules-core'中找不到路径为 ':@unimodules_react-native-adapter'的项目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58377186/

10-10 07:10