필터 지우기
필터 지우기

Packaged app automatic update ?

조회 수: 10 (최근 30일)
Yannick Ducret
Yannick Ducret 2017년 9월 14일
댓글: JClarcq 2022년 12월 19일
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...

답변 (1개)

Sanjana Ramakrishnan
Sanjana Ramakrishnan 2017년 9월 19일
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
Yannick Ducret
Yannick Ducret 2017년 9월 19일
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 2022년 12월 19일
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,

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by