简体   繁体   中英

Missing dependency in React Native

I'm trying to build an app for Android but have been getting this error all afternoon:

A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_debugApk'.
   > Configuration with name 'default' not found.

Just need to run some updates, I would think. So from the app's root I have tried:

yarn

and then

npm i

and

cup all -y

But the problem persists.

settings.gradle:

rootProject.name = 'MyAppName'

include ':react-native-firestack'
project(':react-native-firestack').projectDir = new File(rootProject.projectDir, './node_modules/:react-native-firestack/android/')

include ':react-native-fbsdk'
project(':react-native-fbsdk').projectDir = new File(rootProject.projectDir, './node_modules/:react-native-fbsdk/android/')

include ':app'

在安装react-native-fbsdk之后是否运行了此命令( react-native run-android )?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM