diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-24 17:54:59 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-24 17:54:59 +0800 |
commit | b48fd101e2c74c34f78b9f2212efe117f9e87931 (patch) | |
tree | 455c0a530c4302cdd759e95c8ce8a14ea65ebd0a /controller.cxx | |
parent | b4a7a55b35b441d7e4e4acd83e85f2c21961f9b6 (diff) |
Common CA certificates is bundled in APK
and then copied to files directory on Android
Diffstat (limited to 'controller.cxx')
-rw-r--r-- | controller.cxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/controller.cxx b/controller.cxx index d69a6d6..d007855 100644 --- a/controller.cxx +++ b/controller.cxx @@ -1,3 +1,6 @@ +#ifdef ANDROID +#include <QStringBuilder> +#endif #include <QQmlApplicationEngine> #include <QtQml> #include <qrtclient/client.hxx> @@ -6,7 +9,19 @@ Controller::Controller(QObject* parent) : QObject{parent} { +#ifdef ANDROID + QFile file{"assets:/certs/ca-certificates.crt"}; + file.copy(QDir{QStandardPaths::writableLocation + (QStandardPaths::AppDataLocation)}.absolutePath() + % "/ca-certificates.crt"); + auto path = QDir{QStandardPaths::writableLocation + (QStandardPaths::AppDataLocation)}.absolutePath() + % "/ca-certificates.crt"; + auto client = new RTClient::Client{"https://darapsa.co.id/rt" + , path.toLatin1().constData()}; +#else auto client = new RTClient::Client{"https://darapsa.co.id/rt"}; +#endif client->moveToThread(&thread); connect(&thread, &QThread::finished, client, &QObject::deleteLater); |