ReactNative进阶(十三):Could not resolve all dependencies for configuration ‘:app:debugRuntimeClasspath‘(
Posted No Silver Bullet
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ReactNative进阶(十三):Could not resolve all dependencies for configuration ‘:app:debugRuntimeClasspath‘(相关的知识,希望对你有一定的参考价值。
在RN开发过程中,执行react-native run-android
命令之后,报如下错信息:
Error:Could not resolve all dependencies for configuration ':app:debugRuntimeClasspath'
解决措施
在项目的build.gradle
文件buildscript
和 allprojects
节点同时加上 mavenCentral() google()
即可。
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
mavenCentral()
google()
jcenter()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
}
}
以上是关于ReactNative进阶(十三):Could not resolve all dependencies for configuration ‘:app:debugRuntimeClasspath‘(的主要内容,如果未能解决你的问题,请参考以下文章
ReactNative进阶(二十):Could not connect to development server
ReactNative进阶(四十三):Mac 通过 .bash_profile 文件配置环境变量
ReactNative进阶(三十三):Mac下homebrew 的安装和 brew 命令的使用