试图将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
添加
<scope>runtime</scope>
喜欢这样
<dependency>
<groupId>androidx.appcompat</groupId>
<artifactId>appcompat</artifactId>
<version>1.0.2</version>
<scope>runtime</scope>
</dependency>