I can use this library in my Android Studio project, this section explains how to add an AChartEngine report to your project.
What I've done:
The following are added for building a build.gradle project (one of the project root):
allprojects { repositories { ... maven { url "https://repository-achartengine.forge.cloudbees.com/snapshot/" } } }
For each module that uses the library, add it to your build.gradle (you can put this in the top-level build-level if it should be included in all modules):
dependencies { ... compile group: 'org.achartengine', name: 'achartengine', version: '1.2.0' }
Now I can use the library in the project, I see that the classes in the pop-up windows of the code help and start as successful.
source share