Android not finding class inside a Jar. What to do?

0

This is the error: java.lang.ClassNotFoundException: br.org.projeto.precos.bean.Lista

where "br.org.project.precos.bean.list" is the Jar of which I'm trying to use a class. I've imported everything right, I put it in the libs folder, in Java Build Paths I've added Jar everywhere possible but I'm having this error, what can it be?

    
asked by anonymous 06.07.2015 / 21:07

1 answer

2

Make sure you've tagged "Include" in this jar in the Java Build Path. It may not be included when compiling and generating the APK for your application.

Something like the image below:

    
06.07.2015 / 21:22