Maven项目和android依赖项

问题描述 投票:0回答:1

试图将android依赖项添加到maven项目,但无法获取依赖项。关于获取android依赖项有什么特别的地方吗?


<repository>
    <id>google</id>
    <url>https://maven.google.com/</url>
</repository>

<dependency>
    <groupId>androidx.appcompat</groupId>
    <artifactId>appcompat</artifactId>
    <version>1.1.0</version>
</dependency>

和错误:

Cannot resolve androidx.appcompat:appcompat:1.1.0
android maven dependencies pom.xml
1个回答
0
投票

添加

 <scope>runtime</scope>

喜欢这样

<dependency>
<groupId>androidx.appcompat</groupId>
<artifactId>appcompat</artifactId>
<version>1.0.2</version>
<scope>runtime</scope>
</dependency>
© www.soinside.com 2019 - 2024. All rights reserved.