No classes found achartengine

So, I tried to implement the achart engine for android in my project, but I have some minor complications that I really don't know how to solve. The first problems DDMS indicates before the fatal exception is that I cannot find the classes defined in the library for the achart engine, I imported the library jar using custom libraries in eclipse. A fatal exception points to a "NoClassDefFoundException" in the class "PointStyle". How can i solve this?

+4
source share
1 answer

Follow these steps that may prevent you from this error:

1) Open the "Properties" of the "Achartengine" project (this can be opened from the right click on the project)

2) Choose a Java build path.

3) Select "Order and Export" and select the jarartar file. jar.

4) Then click OK

These steps solve my problem, so I hope you resolve your solution as well.

+3
source

Source: https://habr.com/ru/post/1346057/


All Articles