diff --git a/auth-lib/README.md b/auth-lib/README.md
index 07df05f..b0b187c 100644
--- a/auth-lib/README.md
+++ b/auth-lib/README.md
@@ -1,10 +1,9 @@
-# Spotify Authentication Library
+# Spotify Auth Library
[![Build Status](https://travis-ci.org/spotify/android-auth.svg?branch=master)](https://travis-ci.org/spotify/android-auth)
[![Maven Central](https://img.shields.io/maven-central/v/com.spotify.android/auth.svg)](https://search.maven.org/search?q=g:com.spotify.android)
-This library is responsible for authenticating the user and fetching the access token
-that can subsequently be used to play music or in requests to the [Spotify Web API](https://developer.spotify.com/web-api/).
+This library is responsible for authenticating the user and fetching the authorization code/access token that can subsequently be used to play music or in requests to the [Spotify Web API](https://developer.spotify.com/web-api/).
# Integrating the library into your project
@@ -22,9 +21,8 @@ repositories {
}
```
-To learn more about working with authentication see the
-[Authentication Guide](https://developer.spotify.com/technologies/spotify-android-sdk/android-sdk-authentication-guide/)
-and the [API reference](https://developer.spotify.com/android-sdk-docs/authentication) on the developer site.
+To learn more see the [Authentication Guide](https://developer.spotify.com/technologies/spotify-android-sdk/android-sdk-authentication-guide/)
+and the [API reference](https://spotify.github.io/android-sdk/auth-lib/docs/index.html).
The following entries are merged into your manifest when you add the libary:
@@ -32,43 +30,11 @@ The following entries are merged into your manifest when you add the libary:
-
-
-
-
-
-
-
-
-
-
-
```
-You will need to add the following strings to your project to enable Chrome CustomTabs
-login flow:
-
-```xml
-
- yourscheme
- yourhost
-
-```
-
-So, if you provided `bestapp://ismyapp` as a redirect URI in [the developer console](https://developer.spotify.com/my-applications/#!/applications)
-then you set `com_spotify_sdk_redirect_scheme` to `bestapp` and `com_spotify_sdk_redirect_host` to `ismyapp`.
-
-Since Chrome CustomTabs share credentials with the Chrome instance you have installed
-you get much better experience logging users in compare to WebView flow.
-
# Sample Code
Checkout [the sample project](https://github.com/spotify/android-sdk/tree/master/auth-sample).