Moved the Audio directory from the iOS folder one level up. Android-build will now refer to it SDL-android-project/build.xml must be changed if the directory is moved
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}