File tree Expand file tree Collapse file tree 1 file changed +5
-13
lines changed Expand file tree Collapse file tree 1 file changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -14,25 +14,17 @@ dependencies {
14
14
implementation "com.github.AppDevNext:MPAndroidChart:$latestVersion"
15
15
}
16
16
```
17
- ### Gradle Setup with Github package
18
17
18
+ ### Gradle Setup with Sonartype [ snapshot]
19
+
20
+ Currently only from Sonartype snapshot staging
19
21
``` gradle
20
22
repositories {
21
- ...
22
- repositories {
23
- maven {
24
- name = "GitHubPackages"
25
- url = "https://maven.pkg.github.com/AppDevNext/AndroidChart"
26
- credentials {
27
- username = System.getenv("GITHUBACTOR")
28
- password = System.getenv("GITHUBTOKEN")
29
- }
30
- }
31
- }
23
+ maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
32
24
}
33
25
34
26
dependencies {
35
- implementation " info.appdevnext :chart:$latestVersion"
27
+ implementation ' info.mxtracks :chart:${ latestVersion}-SNAPSHOT'
36
28
}
37
29
```
38
30
You can’t perform that action at this time.
0 commit comments