我需要在我的 android 应用程序中使用 Google Maps Android API v2,我使用 maven 来处理我的依赖项和构建过程,
我确实按照本教程设置了 API V2 https://developers.google.com/maps/documentation/android/start
我的问题是如何将“google-play-services_lib”添加为我的项目的依赖项(如 apkLib)
山姆。
我需要在我的 android 应用程序中使用 Google Maps Android API v2,我使用 maven 来处理我的依赖项和构建过程,
我确实按照本教程设置了 API V2 https://developers.google.com/maps/documentation/android/start
我的问题是如何将“google-play-services_lib”添加为我的项目的依赖项(如 apkLib)
山姆。
使用https://github.com/mosabua/maven-android-sdk-deployer
并将以下依赖项添加到 pom
<dependency>
<groupId>com.google.android.gms</groupId>
<artifactId>google-play-services</artifactId>
<version>5</version>
<type>apklib</type>
</dependency>
<dependency>
<groupId>com.google.android.gms</groupId>
<artifactId>google-play-services</artifactId>
<version>5</version>
<type>jar</type>
</dependency>