Android support library setup with maven

android, android-support-library, jenkins, maven

Solution

unfortunately those libraries are not in the central maven repository. so you have to use the maven-android-sdk-deployer (link) to install the libraries into your maven repository. then add the needed libraries to your pom.xml file as described in the readme.

Problem

I'm kind of new to Android. I'm setting up a maven module for android application (it's inside an existing multi-module project), which uses Google Support Libraries (v4, v7, v13). What is the most adequate way of making it work with maven. I want my project to be able to build with Jenkins (Maven), so I can't link any IDE specific projects or any means of non-maven dependencies. Any options to combine maven/gradle in Jenkins are also acceptable.

Original source

Related problems