Removed the "move" of the resources, it isn't needed for the android build anymore and if they get moved in the default repo it probably should go somewhere in /share
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}