gpt4 book ai didi

android - Gradle/Maven - 加载 aar 依赖项时出错

转载 作者:行者123 更新时间:2023-11-29 01:41:59 27 4
gpt4 key购买 nike

我正在将一个 aar 文件发布到内部 Maven 存储库,但是当我尝试像这样引用它时:

dependencies {
compile 'com.example.android:example-api:0.3-SNAPSHOT'
}

我收到以下错误:

A problem occurred configuring project ':sdk-sample'.
> Artifact 'com.example.android:example-api:0.3-SNAPSHOT:example-api.jar' not found.

这让我感到困惑,因为我没有上传的 jar 文件,而是一个 aar。

gradle 生成并上传的 POM 文件如下所示:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.android</groupId>
<artifactId>example-api</artifactId>
<version>0.3-SNAPSHOT</version>
<packaging>aar</packaging>
<dependencies>
<dependency>
<groupId>org.springframework.android</groupId>
<artifactId>spring-android-rest-template</artifactId>
<version>1.0.1.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>okhttp</artifactId>
<version>1.3.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.android</groupId>
<artifactId>spring-android-core</artifactId>
<version>1.0.1.RELEASE</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>

如果我这样引用它:

dependencies {
compile 'com.example.android:example-api:0.3-SNAPSHOT@aar'
}

然后它成功找到它,但是依赖项没有正确下载,当我调用使用依赖项的方法时,我在运行时得到一个 NoClassDefFoundError。

知道发生了什么吗?

最佳答案

传递属性需要在您的依赖项上设置为 true:


编译('com.example.android:example-api:0.3-SNAPSHOT@aar'){
传递性=真
}

在 Gradle 中,对于 aar 依赖项,它可能应该更改为默认为 true(因为它似乎是对于 jar)。

关于android - Gradle/Maven - 加载 aar 依赖项时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24000261/

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