Wednesday, June 29, 2011

Amazon Daily Free Mp3 and Daily Deal RSS feed

I couldnt find an RSS feed that simply showed me the daily album deal and the Free Mp3 of the day so I went and made some for myself:

http://feeds.feedburner.com/AmazoncomMp3SpecialDeals

http://feeds.feedburner.com/FreeAmazonMp3OfTheDay       (Amazon changed the way they display this data, making this feed invalid)

Instead of the free MP3 of the day I have made a Feed of the top 15 Free MP3's of the day.
TOP FREE MP3's

These are the top 15 paid songs of the day.
TOP PAID MP3's OF THE DAY

Steam Specials update!

So I recently updated my app, Steam Specials to android 1.6 to be able to include ads. I checked my statistics and there were 11 or so users still running on 1.5. I feel bad for all of them so hopefully they manage to find there way here.
That there is a link to the ad free 1.5 version. No notification capability sadly.

Save as Ringtone Android Dev

The biggest trouble i had with my louis soundboard was getting the "Save as ringtone or notification" feature to work with my sound files.

This page from Stealthcopter helped me greatly. This sweet guy did basically all the work for me, the only problem was that it didn't work straight out of the box for me. After much trial and error, the only way i could get it to work was by adding a switch statement for each of my raw sound files, cumbersome and an example of very poor coding yes, but it works!

e.g.


public boolean saveas(int ressound){
String soundname = "";
switch(ressound){
case R.id.sound1:
ressound = R.raw.sound1;
soundname = "louis1";
break;
}