Packaged app automatic update ?

11 vues (au cours des 30 derniers jours)
Yannick Ducret
Yannick Ducret le 14 Sep 2017
Commenté : JClarcq le 19 Déc 2022
I'm trying to deploy code to many users via a Packaged app. I would like the app to automatically check if a new version of itself is available (say on a network location) and prompt the user to update if this is the case. Has anyone ever tried this ? I can't seem to find a way of checking the version of the code that is in the app package...

Réponses (1)

Sanjana Ramakrishnan
Sanjana Ramakrishnan le 19 Sep 2017
There are two ways to accomplish this.
Approach I: Store the compiled application in Network drive, and make all users to use the application from the network drive. When you update the application, place the new application in place of the old application in the network drive. This would allow all users to use the updated application. However, you will be able to update the old application with new one, only when none of the users are using it.
Approach II:
a)Place the compiled application on a server. Create a metadata file with version information of the application.
b)In startup.m file which gets compiled with compiled application, include the following logic:
%begin code
current_version=1.0 %setting a variable to store the current version of the application
if(isdeployed)
version=webread(url) %get version information from metadata file in the server %
if version>current_version
%display a prompt to the customer to update the application%
end
end
  2 commentaires
Yannick Ducret
Yannick Ducret le 19 Sep 2017
Thanks a lot for your answer. However I think you misread my question : I'm using Packaged Apps, I'm not deploying my code with the matlab coder.
JClarcq
JClarcq le 19 Déc 2022
At startupfcn, I have detected that a new version is available.
The App downloads to the "App.exe" folder the new "App.exe_NEW"
How do you update the App.exe by overwriting it with "App.exe_NEW" while running?
Would copyfile be able to do that?
Is it possible to close the App and lauch the copyfile?
Thanks,

Connectez-vous pour commenter.

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by