Skip to content

Instantly share code, notes, and snippets.

@keyboardsurfer
Last active October 13, 2015 12:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keyboardsurfer/4198403 to your computer and use it in GitHub Desktop.
Save keyboardsurfer/4198403 to your computer and use it in GitHub Desktop.
google-play-services.apklib
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<!--Put this file in here, named as pom.xml:
$ANDROID_HOME/extras/google/google_play_services/libproject/google-play-services_lib/
after executing "mvn package" you will find the "play-services-lib-2.apklib" in the target folder
-->
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.android.gms</groupId>
<artifactId>play-services</artifactId>
<version>4.2.42</version>
<packaging>apklib</packaging>
<name>Google Play Services V2</name>
<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>4.1.1.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<version>3.8.0</version>
<artifactId>android-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<sdk>
<platform>19</platform>
</sdk>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment