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;
}