mymikemiller / a-simple-lastfm-scrobbler

Automatically exported from code.google.com/p/a-simple-lastfm-scrobbler
GNU General Public License v3.0
0 stars 0 forks source link

Feature: adding support to rdio (it's officially public!) #117

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Take a look here: http://developer.rdio.com/docs/read/Android

good coding :)

I will provide a little patch as soon as possible :)

Original issue reported on code.google.com by stermi on 20 Jan 2012 at 8:08

GoogleCodeExporter commented 9 years ago
I cannot edit my previews post but this is the code needed to handle Rdio.

Add this into your AndroidManifest.xml

<receiver
            android:name="com.designfuture.music.scrobbler.RdioMusicReceiver"
            android:enabled="true"
            android:exported="true" >
            <intent-filter>
                <action android:name="com.rdio.android.playstatechanged" />
                <action android:name="com.rdio.android.metachanged" />
            </intent-filter>
        </receiver>

And add the attached file to your scrobbler package. You have to edit code 
because it uses my paths :)

Original comment by stermi on 20 Jan 2012 at 8:23

Attachments:

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Thanks for providing this patch/feature, which I would like to have, too.

Do you mind creating a pull request over at the Github repo ( 
https://github.com/tgwizard/sls )?
This would help to integrate it faster probably. 

Original comment by dhahler@gmail.com on 21 Mar 2012 at 10:18

GoogleCodeExporter commented 9 years ago
Yes, thanks, I was just about to write the same. I've started (slowly) to 
migrate the project to github. Could you do a pull request over there? I'll 
happily incorporate it into SLS.

Original comment by tgwizard on 21 Mar 2012 at 12:53

GoogleCodeExporter commented 9 years ago
This is now fixed in version 1.3.7, released soon.

Original comment by tgwizard on 28 Jul 2012 at 11:51