繁体   English   中英

React Native——无法确定任务“:app:mergeDebugAssets”的依赖关系

[英]React Native -- Could not determine the dependencies of task ':app:mergeDebugAssets'

我正在尝试使用npm run android命令运行我的项目,它会为我抛出此错误:

info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag.
Jetifier found 1579 file(s) to forward-jetify. Using 12 workers...
info Starting JS server...
info Installing the app...
Configuration on demand is an incubating feature.

Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.2/userguide/command_line_interface.html#sec:command_line_warnings

FAILURE: Build failed with an exception.

* What went wrong:
Could not determine the dependencies of task ':app:mergeDebugAssets'.
> You must specify a URL for a Maven repository.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 6s

error Failed to install the app. Make sure you have the Android development environment set up: https://reactnative.dev/docs/environment-setup. Run CLI with --verbose flag for more details.
Error: Command failed: gradlew.bat app:installDebug -PreactNativeDevServerPort=8081

到目前为止我所做的是cd到 android 文件夹并运行./gradlew clean并且它说BUILD SUCCESSFUL没有错误我也删除了我的node_module文件夹并再次运行npm install但没有运气。 我感谢任何帮助。

我有一个类似的错误,在我的例子中,我像这样编辑了我的android/build.gradle文件:

...
jcenter()

添加行

mavenCentral()

不知道对你的情况是否有帮助,但对我有用

PS 据我了解,在https://jcenter.bintray.com/访问某些文件存在一些问题

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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