You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project is a wrapper for the [Spotify Web API](https://developer.spotify.com/web-api/).
6
7
It uses [Retrofit](http://square.github.io/retrofit/) to create Java interfaces from API endpoints.
7
8
8
-
## <aname="building"></a>Building
9
-
This project is built using [Gradle](https://gradle.org/):
10
-
11
-
1. Clone the repository: `git clone https://github.com/kaaes/spotify-web-api-android.git`
12
-
2. Build: `./gradlew assemble`
13
-
3. Grab the `aar` that can be found in `spotify-api/build/outputs/aar/spotify-web-api-android-0.1.1.aar` and put it in the `libs` folder in your application
14
-
15
-
## Integration into your project
16
-
17
-
This project depends on `Retrofit 1.9.0` and `OkHttp 2.2.0`. When you [build it](#building), it creates an `aar`
18
-
that doesn't contain Retrofit and OkHttp files. To make your app work you'll need to include these
19
-
dependencies in your app's `build.gradle` file.
9
+
## Integrating into your project
20
10
21
-
Add following to the `build.gradle` file in your app:
11
+
This library is available in [JitPack.io](https://jitpack.io/) repository.
12
+
To use it make sure that repository's url is added to the `build.gradle` file in your app:
0 commit comments