Skip to content

Commit 98d4d6f

Browse files
authored
Merge pull request #144 from adamint/dev
Refactor into multiplatform project, target JS
2 parents 731fb78 + 871aee1 commit 98d4d6f

File tree

1,737 files changed

+57902
-116601
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,737 files changed

+57902
-116601
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# Download and cache dependencies
2828
- restore_cache:
2929
keys:
30-
- v1-dependencies-{{ checksum "build.gradle" }}
30+
- v1-dependencies-{{ checksum "build.gradle.kts" }}
3131
# fallback to using the latest cache if no exact match is found
3232
- v1-dependencies-
3333

@@ -36,8 +36,8 @@ jobs:
3636
- save_cache:
3737
paths:
3838
- ~/.gradle
39-
key: v1-dependencies-{{ checksum "build.gradle" }}
39+
key: v1-dependencies-{{ checksum "build.gradle.kts" }}
4040

4141
# run tests!
42-
- run: gradle test -PclientId=$SPOTIFY_CLIENT_ID -PclientSecret=$SPOTIFY_CLIENT_SECRET
42+
- run: gradle check -DclientId=$SPOTIFY_CLIENT_ID -DclientSecret=$SPOTIFY_CLIENT_SECRET
4343

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,3 +125,4 @@ gradle-app.setting
125125
**/build/
126126

127127
# End of https://www.gitignore.io/api/gradle,kotlin,intellij
128+
/.idea/

.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.idea/encodings.xml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.idea/kotlinc.xml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Kotlin Spotify Web API
22
[ ![JCenter Download](https://api.bintray.com/packages/bintray/jcenter/com.adamratzman%3Aspotify-api-kotlin/images/download.svg) ](https://bintray.com/bintray/jcenter/com.adamratzman%3Aspotify-api-kotlin/_latestVersion)
3+
[![](https://img.shields.io/badge/Wiki-Docs-red.svg)](https://adamint.github.io/spotify-web-api-kotlin/-spotify-kotlin-wrapper/)
34
[![CircleCI](https://circleci.com/gh/adamint/spotify-web-api-kotlin.svg?style=shield)](https://circleci.com/gh/adamint/spotify-web-api-kotlin)
45
![](https://img.shields.io/badge/License-MIT-blue.svg)
56

@@ -28,7 +29,7 @@ repositories {
2829
jcenter()
2930
}
3031
31-
compile group: 'com.adamratzman', name: 'spotify-api-kotlin', version: '3.0.0'
32+
compile group: 'com.adamratzman', name: 'spotify-api-kotlin', version: 'SPOTIFY_API_VERSION'
3233
```
3334

3435
To use the latest snapshot instead, you must add the Jitpack repository as well
@@ -50,9 +51,11 @@ dependencies {
5051
<dependency>
5152
<groupId>com.adamratzman</groupId>
5253
<artifactId>spotify-api-kotlin</artifactId>
53-
<version>3.0.0</version>
54+
<version>SPOTIFY_API_VERSION</version>
5455
</dependency>
55-
56+
```
57+
JCenter Maven Repository:
58+
```
5659
<repository>
5760
<id>jcenter</id>
5861
<name>jcenter-bintray</name>

build.gradle

Lines changed: 0 additions & 150 deletions
This file was deleted.

0 commit comments

Comments
 (0)