Announcements

Help Wizard

Step 1

NEXT STEP

Release Notes - Spotify for Android (0.7.1)

Release Notes - Spotify for Android (0.7.1)

What's new in this version:

  • Browse now features bigger cover images for new releases.
  • New: Now you can filter sub-genres in Browse.
  • New: We've extended the new releases section.
  • Fixed: We've banished more bugs and bad things.
  • Fictitious: This app is now available for cats.

Notes:

Google changed the way they roll out features to users, so you might see the previous release notes in the Play Store for a couple days following a new update.

 

As always, if you're having trouble with an update, please always make sure to go through the [Android] Troubleshooting Spotify steps before posting

Community Ergo Sum
Reply
2 Replies

The play/pause button via my bluetooth headset was working fine for me up until this version, but now it will play but not pause music.  It also will not pause music quickly enough when the GPS tries to break through, and thus will cut off part of the directions being spoken.  This also worked fine on older versions.

I did some digging, and discovered that in ICS and beyond, play and pause send different codes, here is a fix I found another user used to correct the same issue in Subsonic.

#46 ttab...@gmail.com

For play/pause, tell your app developers to fix their code. Here's a patch I did for Subsonic. It should be obvious to any dev what they need to change. On a Galaxy Nexus (GSM) with Motorola S305 headset, all buttons work properly now. FWD, BACK, and Call worked fine before. It was just play/pause causing issues. 


--- DownloadServiceLifecycleSupport.java 2012-03-26 14:46:29.000000000 -0600
+++ DownloadServiceLifecycleSupport.java 2012-03-26 14:44:21.000000000 -0600
@@ -210,6 +210,12 @@
             case KeyEvent.KEYCODE_MEDIA_STOP:
                 downloadService.reset();
                 break;
+            case KeyEvent.KEYCODE_MEDIA_PLAY:
+            		downloadService.play();
+            		break;
+            case KeyEvent.KEYCODE_MEDIA_PAUSE:
+            		downloadService.pause();
+            		break;
             default:
                 break;
         }

Hi folks, we just posted an update here.

Community Ergo Sum

Suggested posts