Skip to content

Instantly share code, notes, and snippets.

@lenamuit
Created August 21, 2013 05:23
Show Gist options
  • Save lenamuit/6290610 to your computer and use it in GitHub Desktop.
Save lenamuit/6290610 to your computer and use it in GitHub Desktop.
fix error --core-android when using google api libs
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client</artifactId>
<version>1.16.0-rc</version>
<exclusions>
<exclusion>
<artifactId>xpp3</artifactId>
<groupId>xpp3</groupId>
</exclusion>
<exclusion>
<artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents</groupId>
</exclusion>
<exclusion>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
</exclusion>
<exclusion>
<artifactId>android</artifactId>
<groupId>com.google.android</groupId>
</exclusion>
</exclusions>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment