I am trying to use the following library in my android application:
http://www.jjoe64.com/p/graphview-library.html
I downloaded the .jar file and added the Java Build Path, but received the following error:
java.lang.NoClassDefFoundError: com.jjoe64.graphview.GraphView$GraphViewData[]
In a further investigation, I discovered that I had to use the "uses-library" tag in AndroidManifest under "application".
However, I do not know what to enter under android: name.
<uses-library android:name="com.jjoe64.graphview"></uses-library>
I tried this and other options, but this leads to an installation error INSTALL_FAILED_MISSING_SHARED_LIBRARY.
What should I do?
thanks
Edit: answer the question. How to close it?
source share