运行npm run android
时,我遇到了构建失败(在适用于Android的macOS上),并且出现以下构建失败:
FAILURE: Build failed with an exception.
* What went wrong:
Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'.
> Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'.
> Could not resolve project :react-native-fs.
Required by:
project :app
> Unable to find a matching configuration of project :react-native-fs: None of the consumable configurations have attributes.
> Could not resolve project :rn-fetch-blob.
Required by:
project :app
> Unable to find a matching configuration of project :rn-fetch-blob: None of the consumable configurations have attributes.
显然,在node_modules/react-native-fs/android
和node_modules/rn-fetch-blob/android
中,我仅看到一个IML文件,没有模块特定的代码。我忘记正确下载了吗?我的android/settings.gradle
文件如下:
rootProject.name = 'FooApp'
include ':react-native-version-number'
project(':react-native-version-number').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-version-number/android')
include ':react-native-fs'
project(':react-native-fs').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fs/android')
include ':rn-fetch-blob'
project(':rn-fetch-blob').projectDir = new File(rootProject.projectDir, '../node_modules/rn-fetch-blob/android')
include ':react-native-google-signin'
project(':react-native-google-signin').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-google-signin/android')
include ':react-native-vector-icons'
project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
include ':react-native-image-picker'
project(':react-native-image-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-picker/android')
include ':react-native-firebase'
project(':react-native-firebase').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-firebase/android')
include ':react-native-firebase'
project(':react-native-firebase').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-firebase/android')
include ':app'
我缺少明显的东西吗?
答案 0 :(得分:1)
您可以尝试删除文件夹node_modules并重新安装
rm -rf node_modules
npm install
react-native link
由cd android && gradle clean
清理干净的android之后
然后再次运行android