Here is error:
java.lang.NoClassDefFoundError: android.support.v7.appcompat.R$attr
What is the correct procedure to include a library with resources like this?
I'm trying to include android compatibility v7 library in apk. it compiles but cannot find resources at runtime. I uploaded the compatibility library to my local repo (jar file only), and included it as a maven dependency as follows:
<dependency>
<groupId>android.support</groupId>
<artifactId>compatibility-v13</artifactId>
<version>23.1.0</version>
</dependency>
Is this enough to get the resources included too? It just downloads a jar which is all I uploaded to my local repo. How do I include the resources as well in the maven build? If we used the maven sdk deployer instead would including the maven dependency alone be enough? or do I need to create whole project and somehow link to library? This is being built on server so I need pom to pull everything needed. How do I get it included as library not just jar?