记一个react-native开发中的坑

博主从git上checkout项目后,运行react-native run-android报错。之前在jcenter()前添加maven { url \https://maven.google.com\ }未解决,最后将整个配置写成特定形式解决了问题,还希望有小伙伴分享原因。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

今天从git上 checkout 一个项目

结果 react-native run-android的时候报了一个错误

"* What went wrong:
A problem occurred configuring project ': app'.
> Could not resolve all dependencies for configuration ':app:_debugApk'.
   > A problem occurred configuring project ':react-native-device-info'.
      > Could not find common.jar (android.arch.core:common:1.0.0).
        Searched in the following locations:
            https://jcenter.bintray.com/android/arch/core/common/1.0.0/common-1.0.0.jar

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

这个问题之前google在 jcenter () 之前添加 maven {  url "https://maven.google.com"},如下图

 maven { url "https://maven.google.com" } //react-native-video
        jcenter()

并没有解决

最后将整个配置写成

allprojects {

         repositories {

               maven { url "https://jitpack.io" }

               maven { url 'https://maven.google.com' }

               mavenLocal()

               // google()

               jcenter()

               maven { url "$rootDir/../node_modules/react-native/android" }

           }

}

解决了这个问题

有没有小伙伴知道啥原因,分享一下

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值