How can i version check, download new version and install from own server in QML
-
Hello, what I want to do is to update the new version of the phone application I made with QML from its own server. When the user runs the mobile application, if I have uploaded a new version, it will download and install the new version. How do I do this in QML? More precisely, I do version control, but I couldn't find how to download the file and start the installation.
-
Hello, what I want to do is to update the new version of the phone application I made with QML from its own server. When the user runs the mobile application, if I have uploaded a new version, it will download and install the new version. How do I do this in QML? More precisely, I do version control, but I couldn't find how to download the file and start the installation.
-
Hello, what I want to do is to update the new version of the phone application I made with QML from its own server. When the user runs the mobile application, if I have uploaded a new version, it will download and install the new version. How do I do this in QML? More precisely, I do version control, but I couldn't find how to download the file and start the installation.
-
@VoLVoSum On which platform exactly? I don't think you can do this on Android and iOS - there, apps can only be installed/updated from the app store.
-
@jsulm On Android, the apps can be copied over and installed locally. This worked before. It may have been changed. Still today, my Android app with 5.15.2 is not deployed via app store.
-
@VoLVoSum You can not do it in QML. Instead it is done in C++ code which is bound with QML files. Your app can be downloaded via qt network manager. After it is downloaded, it can be installed(not sure how you install your app).