AppDesigner standalone App Error

11 visualizaciones (últimos 30 días)
Barbara Kammerl
Barbara Kammerl el 18 de Nov. de 2021
Respondida: Barbara Kammerl el 13 de Dic. de 2021
Hello, i have a Problem with running a standalone App from Matlabs AppDesigner.
I can build a standalone App with Matlabs Application Compiler with some Warnings that several files/functions have been "excluded from packaging for the "MCR" target environment according to the "Compiler" license". (which are functions we don't have in our code)
I can install the standalone App but while trying to run it it shows the Error- Message:
"Unrecognized function or variable 'matlab.internal.getSettingsRoot'... Error at Line 721"
The responsible part of my code is one the AppDesigner generates by itself:
% Construct app
function app = App_Name(varargin)
% Create UIFigure and components
createComponents(app) % Line 721
% Register the app with App Designer
registerApp(app, app.AppFigure)
% Execute the startup function
runStartupFcn(app, @(app)startupFcn(app, varargin{:}))
if nargout == 0
clear app
end
end
I know how to edit this part but i don't know what i should write instead so that my app works.
Thanks in advance for your help.

Respuesta aceptada

Barbara Kammerl
Barbara Kammerl el 13 de Dic. de 2021
I got it to work. After getting the reinstalling MatLab with the latest installation and the latest Version of the Application Compiler it now compiles without warnings and starts without any error. Perhaps my MatLab and Application Compiler Versions didn't match.
Thanks for the help!

Más respuestas (1)

Anshika Chourasia
Anshika Chourasia el 2 de Dic. de 2021
Hi Barbara,
According to my understanding the issue is very likely to be caused by a corrupt pathdef.m file on your MATLAB search path.
To check where this corrupt file is based, please perform the steps below.
1. Type the following commands in the MATLAB Command Window
p = path
save('my_path')
These commands will save your MATLAB path as a backup
2. Close MATLAB
3. Start MATLAB from the folder <matlabroot>\toolbox\local.
Note that the <matlabroot> part is dependent on your specific machine. To obtain the full path of <matlabroot>, type matlabroot in the MATLAB Command Window.
4. Type the following commands in the MATLAB Command Window
restoredefaultpath
savepath
5. Check whether you can start MATLAB without any error message now
If the error persists, check whether a file called "pathdef.m" exists which is not the one in <matlabroot>\toolbox\local. You can check this by executing the command:
which -all pathdef
If this file exists, please remove it from the MATLAB search path.
  3 comentarios
Anshika Chourasia
Anshika Chourasia el 8 de Dic. de 2021
It seems to me that it's related to MATLAB standalone compiler settings which internally causing 'matlab.internal.getSettingsRoot' error. Have you tried the above workaround?
Barbara Kammerl
Barbara Kammerl el 9 de Dic. de 2021
I have tried your workaround above and checked to see that i now only have the required pathdef File (in <matlabroot>\toolbox\local) left. I then tried to compile my program again, which resulted in less warnings during the process but after installing the standalone app i got the same error again.

Iniciar sesión para comentar.

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by