Maven 中央存储库中尚不提供 API 级别 15(Android 4.0.3、4.0.4)。
您可以通过 SDK Manager 下载 android.jar,然后手动将其安装到本地 maven 存储库中:
mvn install:install-file \
-DgroupId=com.google.android \
-DartifactId=android \
-Dpackaging=jar \
-Dversion= 4.0.3 \
-Dfile=/android-sdk-home/platforms/android-15/android.jar
然后开始在你的项目中使用它:
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>4.0.3</version>
<scope>provided</scope>
</dependency>
请注意,您可以在安装 jar 文件时为 groupId、artifactId 和 version 使用任何名称,例如,maven-android-sdk-deployer使用的约定是:
<dependency>
<groupId>android</groupId>
<artifactId>android</artifactId>
<version>4.0.3_r3</version>
<scope>provided</scope>
</dependency>