gpt4 book ai didi

android - react-native-fb sdk com.android.support 依赖错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:51:09 25 4
gpt4 key购买 nike

 > A problem occurred configuring project ':react-native-fbsdk'.
> Could not resolve all dependencies for configuration ':react-native-fbsdk:_debugPublishCopy'.
> Could not find com.android.support:appcompat-v7:27.0.1.
Searched in the following locations:
file:/<location_to_sdk>/sdk/extras/android/m2repository/com/android/support/appcompat-v7/27.0.1/appcompat-v7-27.0.1.pom
file:/<location_to_sdk>/sdk/extras/android/m2repository/com/android/support/appcompat-v7/27.0.1/appcompat-v7-27.0.1.jar
file:/<location_to_app>/android/sdk-manager/com/android/support/appcompat-v7/27.0.1/appcompat-v7-27.0.1.jar
Required by:
newPtMobile:react-native-fbsdk:unspecified

这个问题是今天早上运行 react-native run-android 时开始出现的,没有对代码进行任何更改或添加新包,直到现在它工作正常!

"react-native":"0.50.3", "react-native-fbsdk":"0.6.3"

我可以看到我的 sdk/extras/android/m2repository/com/android/support 子文件夹中缺少 android 支持库,所有子文件夹都有 26.0.0-alpha1 文件夹作为最后一个。我已经尝试删除支持存储库并通过 android studio 再次安装并手动下载最新的 android_m2repository 但文件夹仍然丢失。

我无法理解的是为什么 google 的 maven 存储库 ( https://dl.google.com/dl/android/maven2/index.html ) 声明在例如 m2repository/com/android/support/appcompat -v7 我应该有一个名为 27.0.2 的文件夹(以及一些以前的版本也丢失了)但即使在他们提供的最新 android_m2repository 中它也丢失了!

https://dl.google.com/android/repository/android_m2repository_r48.zip

最佳答案

我也遇到了同样的问题。我能够通过更新我的
成功构建 ROOT : android/build.gradle 文件。

步骤:
1. 您所要做的就是将新的 maven 行添加到 maven.google.com
allprojects 部分2. 添加resolutionStrategy Will Restrict your android fbsdk version to 4.28.0

allprojects {
repositories {
mavenLocal()
jcenter()
configurations.all {
resolutionStrategy {
force 'com.facebook.android:facebook-android-sdk:4.28.0'
}
}
maven {
url "https://maven.google.com"
}
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
}
}

关于android - react-native-fb sdk com.android.support 依赖错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47675667/

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