diff --git a/Das Schmalter App/Qt-Code/DasSchmalter.pro b/DasSchmalterApp/Qt-Code/DasSchmalter.pro similarity index 87% rename from Das Schmalter App/Qt-Code/DasSchmalter.pro rename to DasSchmalterApp/Qt-Code/DasSchmalter.pro index c7fd8fd..f78325f 100644 --- a/Das Schmalter App/Qt-Code/DasSchmalter.pro +++ b/DasSchmalterApp/Qt-Code/DasSchmalter.pro @@ -1,4 +1,4 @@ -QT += quick quick quickcontrols2 +QT += quick qml quickcontrols2 CONFIG += c++11 # The following define makes your compiler emit warnings if you use @@ -32,3 +32,10 @@ else: unix:!android: target.path = /opt/$${TARGET}/bin HEADERS += \ appsettings.h + +DISTFILES += \ + android-sources/AndroidManifest.xml + +android { + ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android-sources +} diff --git a/DasSchmalterApp/Qt-Code/android-sources/AndroidManifest.xml b/DasSchmalterApp/Qt-Code/android-sources/AndroidManifest.xml new file mode 100755 index 0000000..bb7c3fd --- /dev/null +++ b/DasSchmalterApp/Qt-Code/android-sources/AndroidManifest.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/DasSchmalterApp/Qt-Code/android-sources/res/drawable-hdpi/icon.png b/DasSchmalterApp/Qt-Code/android-sources/res/drawable-hdpi/icon.png new file mode 100644 index 0000000..901757b Binary files /dev/null and b/DasSchmalterApp/Qt-Code/android-sources/res/drawable-hdpi/icon.png differ diff --git a/DasSchmalterApp/Qt-Code/android-sources/res/drawable-ldpi/icon.png b/DasSchmalterApp/Qt-Code/android-sources/res/drawable-ldpi/icon.png new file mode 100644 index 0000000..901757b Binary files /dev/null and b/DasSchmalterApp/Qt-Code/android-sources/res/drawable-ldpi/icon.png differ diff --git a/DasSchmalterApp/Qt-Code/android-sources/res/drawable-mdpi/icon.png b/DasSchmalterApp/Qt-Code/android-sources/res/drawable-mdpi/icon.png new file mode 100644 index 0000000..901757b Binary files /dev/null and b/DasSchmalterApp/Qt-Code/android-sources/res/drawable-mdpi/icon.png differ diff --git a/Das Schmalter App/Qt-Code/appsettings.cpp b/DasSchmalterApp/Qt-Code/appsettings.cpp similarity index 100% rename from Das Schmalter App/Qt-Code/appsettings.cpp rename to DasSchmalterApp/Qt-Code/appsettings.cpp diff --git a/Das Schmalter App/Qt-Code/appsettings.h b/DasSchmalterApp/Qt-Code/appsettings.h similarity index 100% rename from Das Schmalter App/Qt-Code/appsettings.h rename to DasSchmalterApp/Qt-Code/appsettings.h diff --git a/Das Schmalter App/Qt-Code/main.cpp b/DasSchmalterApp/Qt-Code/main.cpp similarity index 71% rename from Das Schmalter App/Qt-Code/main.cpp rename to DasSchmalterApp/Qt-Code/main.cpp index 5ac3b7a..764e366 100644 --- a/Das Schmalter App/Qt-Code/main.cpp +++ b/DasSchmalterApp/Qt-Code/main.cpp @@ -1,7 +1,18 @@ +#include +#include +#include +#include +#include +#include + +#include +#include +#include #include +#include +#include #include #include -#include #include "appsettings.h" diff --git a/Das Schmalter App/Qt-Code/main.qml b/DasSchmalterApp/Qt-Code/main.qml similarity index 99% rename from Das Schmalter App/Qt-Code/main.qml rename to DasSchmalterApp/Qt-Code/main.qml index f9389c4..c349152 100644 --- a/Das Schmalter App/Qt-Code/main.qml +++ b/DasSchmalterApp/Qt-Code/main.qml @@ -6,7 +6,7 @@ Window { visible: true width: 640 height: 480 - title: qsTr("Das Schmalter") + title: qsTr("DasSchmalter") Page { id: app diff --git a/Das Schmalter App/Qt-Code/off.png b/DasSchmalterApp/Qt-Code/off.png similarity index 100% rename from Das Schmalter App/Qt-Code/off.png rename to DasSchmalterApp/Qt-Code/off.png diff --git a/Das Schmalter App/Qt-Code/on0.png b/DasSchmalterApp/Qt-Code/on0.png similarity index 100% rename from Das Schmalter App/Qt-Code/on0.png rename to DasSchmalterApp/Qt-Code/on0.png diff --git a/Das Schmalter App/Qt-Code/on1.png b/DasSchmalterApp/Qt-Code/on1.png similarity index 100% rename from Das Schmalter App/Qt-Code/on1.png rename to DasSchmalterApp/Qt-Code/on1.png diff --git a/Das Schmalter App/Qt-Code/on2.png b/DasSchmalterApp/Qt-Code/on2.png similarity index 100% rename from Das Schmalter App/Qt-Code/on2.png rename to DasSchmalterApp/Qt-Code/on2.png diff --git a/Das Schmalter App/Qt-Code/on3.png b/DasSchmalterApp/Qt-Code/on3.png similarity index 100% rename from Das Schmalter App/Qt-Code/on3.png rename to DasSchmalterApp/Qt-Code/on3.png diff --git a/Das Schmalter App/Qt-Code/on4.png b/DasSchmalterApp/Qt-Code/on4.png similarity index 100% rename from Das Schmalter App/Qt-Code/on4.png rename to DasSchmalterApp/Qt-Code/on4.png diff --git a/Das Schmalter App/Qt-Code/on5.png b/DasSchmalterApp/Qt-Code/on5.png similarity index 100% rename from Das Schmalter App/Qt-Code/on5.png rename to DasSchmalterApp/Qt-Code/on5.png diff --git a/Das Schmalter App/Qt-Code/qml.qrc b/DasSchmalterApp/Qt-Code/qml.qrc similarity index 100% rename from Das Schmalter App/Qt-Code/qml.qrc rename to DasSchmalterApp/Qt-Code/qml.qrc diff --git a/Das Schmalter App/Qt-Code/shared.qrc b/DasSchmalterApp/Qt-Code/shared.qrc similarity index 100% rename from Das Schmalter App/Qt-Code/shared.qrc rename to DasSchmalterApp/Qt-Code/shared.qrc diff --git a/DasSchmalterApp/Qt-Code/shared/icons/favicon.png b/DasSchmalterApp/Qt-Code/shared/icons/favicon.png new file mode 100644 index 0000000..901757b Binary files /dev/null and b/DasSchmalterApp/Qt-Code/shared/icons/favicon.png differ diff --git a/DasSchmalterApp/Qt-Code/shared/icons/favicon.xcf b/DasSchmalterApp/Qt-Code/shared/icons/favicon.xcf new file mode 100644 index 0000000..2161ec3 Binary files /dev/null and b/DasSchmalterApp/Qt-Code/shared/icons/favicon.xcf differ diff --git a/Das Schmalter App/README.md b/DasSchmalterApp/README.md similarity index 100% rename from Das Schmalter App/README.md rename to DasSchmalterApp/README.md diff --git a/Das Schmalter App/Release/Android/DasSmalter-ARMv7.apk b/DasSchmalterApp/Release/Android/DasSmalter-ARMv7.apk similarity index 55% rename from Das Schmalter App/Release/Android/DasSmalter-ARMv7.apk rename to DasSchmalterApp/Release/Android/DasSmalter-ARMv7.apk index 4a1b915..738a8bb 100644 Binary files a/Das Schmalter App/Release/Android/DasSmalter-ARMv7.apk and b/DasSchmalterApp/Release/Android/DasSmalter-ARMv7.apk differ