Reputation: 4337
So I was looking for a graph solution for my app and I stumbled on GraphView.
I was looking around on the github and in the source files and I can't seem to find an integration guide. Maybe it's right in front of my face but I can't see it anywhere.
I have never integrated someone elses code into my own before, so if anyone could give me a quick rundown on how to integrate GraphView with my current project, I would greatly appreciate it.
Upvotes: 6
Views: 15361
Reputation: 3624
GraphView has been added to Maven Central, so Android Studio integration is even easier now. Just add the following to your build.gradle file and you don't need to download the .jar.
dependencies {
'com.jjoe64:graphview:3.1.3'
}
Upvotes: 5
Reputation: 1961
Answer using android studio:
- download .jar from from this link
-add jar file to project->app->libs
-open build.gradle and under dependencies write:
dependencies {
compile files('libs/graphview-3.1.jar')
}
after that sync project
Upvotes: 1
Reputation: 41
in Android Studio, add this line in your build.gradle file :
dependencies {
compile files('libs/graphview-3.1.jar')
}
And don't forget to click on "Sync project with Gradle files".
Upvotes: 1
Reputation: 87064
Option 1:
/libs
folder in the project where you want to use GraphView
.Option 2:
Get the project from github
using git
:
git
git clone git://github.com/jjoe64/GraphView.git graphView
Eclipse
File
-> Import...
-> Android
-/ Existing Android Code Into Project
(use Browse
to navigate to the graphView
folder from your favorite folder of the previous step)GraphView
-> Properties
-> Android
-> at the bottom(the Library
area) use Add...
to select GraphView
Upvotes: 7