We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 16738ef + 75ba4f6 commit eb44a13Copy full SHA for eb44a13
README.md
@@ -100,14 +100,20 @@ In order to use the library, there are 4 different options:
100
101
**1. Gradle dependency** (recommended)
102
103
- - Add the following to your `build.gradle`:
104
- ```gradle
105
-repositories {
106
- maven { url "https://jitpack.io" }
+ - Add the following to your project level `build.gradle`:
+
+```gradle
+allprojects {
107
+ repositories {
108
+ maven { url "https://jitpack.io" }
109
+ }
110
}
-
111
+```
112
+ - Add this to your app `build.gradle`:
113
114
115
dependencies {
- compile 'com.github.PhilJay:MPAndroidChart:v3.0.0-beta1'
116
+ compile 'com.github.PhilJay:MPAndroidChart:v3.0.0-beta1'
117
118
```
119
0 commit comments