I have a pom.xml for my android application. Now i want to add a new depedency through maven.
I have added a dependency like this
<dependency>
<groupId>com.commonlib</groupId>
<artifactId>commonlib</artifactId>
<version>8.4.22</version>
</dependency>
Now the code is very well compiled and built an apk. I run maven clean install command. But when i run the application NoClassDefFoundError comes for the class.
My question do i have to do anything else apart from adding the depdency in pom. xml
cheers, Sayrav