Skip to content Skip to sidebar Skip to footer

Maven Eclipse Plugin Won't Add Android Support-v4 To Build Path

I'm working on a project using RoboGuice with Eclipse ADT, m2e and android-maven-plugin. I'm using RoboListFragment class which depends on android.support.v4.app.ListFragment, for

Solution 1:

Try to remove

<scope>provided</scope>

In Maven, this means support-v4 will be in the classpath (see http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Scope)

Post a Comment for "Maven Eclipse Plugin Won't Add Android Support-v4 To Build Path"