Skip to content

Commit eb83001

Browse files
authored
Update README.md
1 parent 15c41ee commit eb83001

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,17 @@
77
This is the [Kotlin](https://kotlinlang.org/) implementation of the [Spotify Web API](https://developer.spotify.com/web-api/)
88

99
## Install it
10+
11+
### JVM
1012
This library is available via JCenter [here](https://search.maven.org/artifact/com.adamratzman/spotify-api-kotlin).
1113

12-
### Gradle
14+
#### Gradle
1315
```
1416
repositories {
1517
jcenter()
1618
}
1719
18-
compile group: 'com.adamratzman', name: 'com.adamratzman.spotify-api-kotlin', version: 'LATEST_VERSION'
20+
compile group: 'com.adamratzman', name: 'com.adamratzman.spotify-api-kotlin', version: '3.2.01'
1921
```
2022

2123
To use the latest snapshot instead, you must add the Jitpack repository as well
@@ -32,28 +34,26 @@ dependencies {
3234
}
3335
```
3436

35-
### Maven
36-
```
37-
<dependency>
38-
<groupId>com.adamratzman</groupId>
39-
<artifactId>com.adamratzman.spotify-api-kotlin</artifactId>
40-
<version>LATEST_VERSION</version>
41-
</dependency>
37+
### Android
4238
```
43-
JCenter Maven Repository:
39+
repositories {
40+
jcenter()
41+
}
42+
43+
compile group: 'com.adamratzman', name: 'com.adamratzman.spotify-api-kotlin-android', version: '3.2.01'
4444
```
45-
<repository>
46-
<id>jcenter</id>
47-
<name>jcenter-bintray</name>
48-
<url>http://jcenter.bintray.com</url>
49-
</repository>
45+
46+
### Kotlin/JS
5047
```
48+
repositories {
49+
jcenter()
50+
}
5151
52-
#### Android
53-
This library will work out of the box on Android.
52+
compile group: 'com.adamratzman', name: 'com.adamratzman.spotify-api-kotlin-js', version: '3.2.01'
53+
```
5454

5555
## Documentation
56-
The `com.adamratzman.spotify-web-api-kotlin` JavaDocs are hosted at https://adamint.github.io/com.adamratzman.spotify-web-api-kotlin/docs/com.adamratzman.spotify-web-api-kotlin/
56+
The `com.adamratzman.spotify-web-api-kotlin` JavaDocs are hosted at https://adamint.github.io/spotify-web-api-kotlin/com.adamratzman.spotify-web-api-kotlin/
5757

5858
## Samples
5959
Samples for all APIs are located in the `samples` directory

0 commit comments

Comments
 (0)