A few months ago i was able to run and deploy an app unto my android device, now I can't even get the avd manager working. Please help I'm really confused because I haven't messed with anything since 2 months ago and everything is pretty much the same but now I keep getting crashes when running any project.

App:

.pro
Qt Code:
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2013-08-14T15:38:05
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT += core gui
  8.  
  9. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  10.  
  11. TARGET = perfectMatch
  12. TEMPLATE = app
  13.  
  14.  
  15. SOURCES += main.cpp\
  16. mainwindow.cpp
  17.  
  18. HEADERS += mainwindow.h
  19.  
  20. FORMS += mainwindow.ui
  21.  
  22. CONFIG += mobility
  23. MOBILITY =
  24.  
  25. OTHER_FILES += \
  26. android/AndroidManifest.xml \
  27. android/res/drawable/icon.png \
  28. android/res/drawable/logo.png \
  29. android/res/drawable-hdpi/icon.png \
  30. android/res/drawable-ldpi/icon.png \
  31. android/res/drawable-mdpi/icon.png \
  32. android/res/layout/splash.xml \
  33. android/res/values/libs.xml \
  34. android/res/values/strings.xml \
  35. android/res/values-de/strings.xml \
  36. android/res/values-el/strings.xml \
  37. android/res/values-es/strings.xml \
  38. android/res/values-et/strings.xml \
  39. android/res/values-fa/strings.xml \
  40. android/res/values-fr/strings.xml \
  41. android/res/values-id/strings.xml \
  42. android/res/values-it/strings.xml \
  43. android/res/values-ja/strings.xml \
  44. android/res/values-ms/strings.xml \
  45. android/res/values-nb/strings.xml \
  46. android/res/values-nl/strings.xml \
  47. android/res/values-pl/strings.xml \
  48. android/res/values-pt-rBR/strings.xml \
  49. android/res/values-ro/strings.xml \
  50. android/res/values-rs/strings.xml \
  51. android/res/values-ru/strings.xml \
  52. android/res/values-zh-rCN/strings.xml \
  53. android/res/values-zh-rTW/strings.xml \
  54. android/src/org/kde/necessitas/ministro/IMinistro.aidl \
  55. android/src/org/kde/necessitas/ministro/IMinistroCallback.aidl \
  56. android/src/org/kde/necessitas/origo/QtActivity.java \
  57. android/src/org/kde/necessitas/origo/QtApplication.java \
  58. android/version.xml
To copy to clipboard, switch view to plain text mode 

.h
Qt Code:
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3.  
  4. #include <QMainWindow>
  5.  
  6. namespace Ui {
  7. class MainWindow;
  8. }
  9.  
  10. class MainWindow : public QMainWindow
  11. {
  12. Q_OBJECT
  13.  
  14. public:
  15. explicit MainWindow(QWidget *parent = 0);
  16. ~MainWindow();
  17.  
  18. private slots:
  19. void on_pushButton_clicked();
  20.  
  21. private:
  22. Ui::MainWindow *ui;
  23. };
  24.  
  25. #endif // MAINWINDOW_H
To copy to clipboard, switch view to plain text mode 

.cpp
Qt Code:
  1. #include "mainwindow.h"
  2. #include "ui_mainwindow.h"
  3.  
  4. MainWindow::MainWindow(QWidget *parent) :
  5. QMainWindow(parent),
  6. ui(new Ui::MainWindow)
  7. {
  8. ui->setupUi(this);
  9. }
  10.  
  11. MainWindow::~MainWindow()
  12. {
  13. delete ui;
  14. }
  15.  
  16. void MainWindow::on_pushButton_clicked()
  17. {
  18. ui->label->setText("Hello World");
  19. }
To copy to clipboard, switch view to plain text mode