gpt4 book ai didi

gradle - 项目无法在依赖项目中使用 SDK 依赖项构建

转载 作者:行者123 更新时间:2023-12-03 05:39:23 25 4
gpt4 key购买 nike

我正在构建一个依赖于外部(第 3 方)SDK 的 React Native 模块,用于我的 RN 项目。

依赖项目将构建,但 android 应用程序不会构建。

在 native 模块的 build.gradle 我有以下内容:

allprojects {
repositories {
jcenter()
flatDir {
dirs 'src/main/libs'
}
}
}

在 android 应用的 build.gradle
dependencies {
implementation project(':react-native-vector-icons')
implementation project(':react-native-mymodule-sdk')
...
}

构建 Android 应用程序时出现错误:
Could not find :third-party-sdk-2.0:.
Searched in the following locations: file:/C:/[path to android project]/app/libs/third-party-sdk-2.0.aar

Required by:
project :app > project :react-native-mymodule-sdk

最佳答案

我已经解决了这个问题。

有一些问题。首先,SDK 项目中的 Gradle 版本严重过时。更新到最新版本后,需要添加 Google 存储库。

我还需要将 allProjects -> dependencies 部分添加到主应用程序 build.gradle 文件中。

关于gradle - 项目无法在依赖项目中使用 SDK 依赖项构建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54136038/

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