<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Release Notes - Spotify for Android (0.7.1) in Android</title>
    <link>https://community.spotify.com/t5/Android/Release-Notes-Spotify-for-Android-0-7-1/m-p/560152#M20532</link>
    <description>&lt;P&gt;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.&amp;nbsp; 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.&amp;nbsp; This also worked fine on older versions.&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="author"&gt; &lt;A name="c46" href="http://code.google.com/p/android/issues/detail?id=23172#c46" target="_blank"&gt;#46&lt;/A&gt; &lt;A class="userlink" href="http://code.google.com/u/112861708825174256956/" target="_blank"&gt;ttab...@gmail.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;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;
         }

&lt;/PRE&gt;</description>
    <pubDate>Mon, 14 Oct 2013 13:00:17 GMT</pubDate>
    <dc:creator>Tercero</dc:creator>
    <dc:date>2013-10-14T13:00:17Z</dc:date>
    <item>
      <title>Release Notes - Spotify for Android (0.7.1)</title>
      <link>https://community.spotify.com/t5/Android/Release-Notes-Spotify-for-Android-0-7-1/m-p/555490#M20530</link>
      <description>&lt;P&gt;What's new in &lt;A href="https://play.google.com/store/apps/details?id=com.spotify.mobile.android.ui" rel="nofollow" target="_self"&gt;this version&lt;/A&gt;:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRIKE&gt;&lt;FONT face="arial, sans-serif"&gt;Browse now features bigger cover images for new releases.&lt;/FONT&gt;&lt;/STRIKE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="arial, sans-serif"&gt;New: Now you can filter sub-genres in Browse.&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="arial, sans-serif"&gt;New: We've extended the new releases section.&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="arial, sans-serif"&gt;Fixed: We've banished more bugs and bad things.&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="arial, sans-serif"&gt;Fictitious: This app is now available for cats.&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Notes&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As always, if you're having trouble with an update, please always make sure to go through the &lt;A href="https://community.spotify.com/t5/Help-Android/Android-Troubleshooting-Spotify/td-p/113082" target="_blank"&gt;[Android] Troubleshooting Spotify&lt;/A&gt; steps before posting&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2013 12:31:25 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Android/Release-Notes-Spotify-for-Android-0-7-1/m-p/555490#M20530</guid>
      <dc:creator>Goodman</dc:creator>
      <dc:date>2013-10-15T12:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Release Notes - Spotify for Android (0.7.1)</title>
      <link>https://community.spotify.com/t5/Android/Release-Notes-Spotify-for-Android-0-7-1/m-p/560152#M20532</link>
      <description>&lt;P&gt;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.&amp;nbsp; 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.&amp;nbsp; This also worked fine on older versions.&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="author"&gt; &lt;A name="c46" href="http://code.google.com/p/android/issues/detail?id=23172#c46" target="_blank"&gt;#46&lt;/A&gt; &lt;A class="userlink" href="http://code.google.com/u/112861708825174256956/" target="_blank"&gt;ttab...@gmail.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;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;
         }

&lt;/PRE&gt;</description>
      <pubDate>Mon, 14 Oct 2013 13:00:17 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Android/Release-Notes-Spotify-for-Android-0-7-1/m-p/560152#M20532</guid>
      <dc:creator>Tercero</dc:creator>
      <dc:date>2013-10-14T13:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Release Notes - Spotify for Android (0.7.1)</title>
      <link>https://community.spotify.com/t5/Android/Release-Notes-Spotify-for-Android-0-7-1/m-p/574490#M21060</link>
      <description>&lt;P&gt;Hi folks, we just posted an update &lt;A href="https://community.spotify.com/t5/Help-Android/Release-Notes-Spotify-for-Android-0-7-2/td-p/574488" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2013 12:37:52 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Android/Release-Notes-Spotify-for-Android-0-7-1/m-p/574490#M21060</guid>
      <dc:creator>Goodman</dc:creator>
      <dc:date>2013-10-31T12:37:52Z</dc:date>
    </item>
  </channel>
</rss>

