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
public void connect(boolean showAuthView) {
SpotifyAppRemote.disconnect(mSpotifyAppRemote);
SpotifyAppRemote.connect(
MainApplication.getContext(),
new ConnectionParams.Builder(CLIENT_ID)
.setRedirectUri(REDIRECT_URI)
.showAuthView(showAuthView)
.build(),
new Connector.ConnectionListener() {
@Override
public void onConnected(SpotifyAppRemote spotifyAppRemote) {
mSpotifyAppRemote = spotifyAppRemote;
Log.d(TAG, "connect : " + spotifyAppRemote.isConnected());
onSubscribedToPlayerState();
}
@Override
public void onFailure(Throwable error) {
logError(error);
}
});
}
I have confirmed that the Android packages and SHA1 in the Dashboard match, and the SHA1 values are in uppercase. My project has only one keystore, which is used for both release and debug builds. The Client ID in the app also matches the ID in the Dashboard. However, I still keep getting this error. The SHA1 is obtained through ./gradlew signingReport.
I can now retrieve the token and user information, but I still can't connect to Spotify Music successfully.
Thanks for your response!
The text was updated successfully, but these errors were encountered:
'com.spotify.android:auth:2.0.1'
spotify-app-remote-release-0.8.0.aar
I have confirmed that the Android packages and SHA1 in the Dashboard match, and the SHA1 values are in uppercase. My project has only one keystore, which is used for both release and debug builds. The Client ID in the app also matches the ID in the Dashboard. However, I still keep getting this error. The SHA1 is obtained through ./gradlew signingReport.
I can now retrieve the token and user information, but I still can't connect to Spotify Music successfully.
Thanks for your response!
The text was updated successfully, but these errors were encountered: