gpt4 book ai didi

android - 找不到 androidx.appcompat :appcompat:1. 0.2

转载 作者:行者123 更新时间:2023-12-02 00:51:37 36 4
gpt4 key购买 nike

我正在迁移到 androidX,但我收到:

Could not find androidx.appcompat:appcompat:1.0.2.
Required by:
project :app > com.facebook.react:react-native:0.60.4

我的项目 gradle.build:
buildscript {
repositories {
maven { url 'https://maven.google.com' }
jcenter()
}
dependencies {
...
}
}


allprojects {
repositories {
mavenLocal()
jcenter()
maven {
url "https://jitpack.io"
}
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
}
}

好像我错过了另一个来源。有什么建议么?

最佳答案

Google's Maven Repository 中提供了 AndroidX 依赖项,您尚未在 allprojects 下添加-> repositories在您的项目中build.gradle .

插入 google()allprojects -> repositories在一切之前。
也可以替换maven { url 'https://maven.google.com' }google()buildscript -> repositories .

所以它应该是这样的:

buildscript {
repositories {
google()
jcenter()
}
dependencies {
...
}
}

allprojects {
repositories {
google()
mavenLocal()
jcenter()
maven {
url "https://jitpack.io"
}
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
}
}

进行这些更改后同步您的项目,它应该可以工作。

关于android - 找不到 androidx.appcompat :appcompat:1. 0.2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57125966/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com