- The code is using a function or file that is not supported by the MATLAB Compiler license.
- The code is using a function or file that is not compatible with the MATLAB Runtime environment.
- The code is using a function or file that requires additional support packages that are not included in the MATLAB Compiler license.
- The code is using a function or file that is not properly configured for deployment.
Unable to make a standalone desktop application using webcam function in MATLAB followed by deployment error.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
while clicking on the package option and going forwared the following error is being displayed.
Warning: In "C:\ProgramData\MATLAB\SupportPackages\R2022a\toolbox\matlab\webcam\supportpackages\+matlabshared\+supportpkg\+internal\+sppkglegacy\USBWebcams.m", "matlabshared.supportpkg.internal.sppkglegacy.SupportPackageRegistryPluginBase" are excluded from packaging for the MATLAB Runtime environment according to the MATLAB Compiler license. Either remove the file or function from your code, or use the MATLAB function "isdeployed" to ensure the function is not invoked in the deployed component.
0 comentarios
Respuestas (1)
Eswaramoorthy
el 1 de Mayo de 2023
This error is related to MATLAB Compiler license and the use of the function "matlabshared.supportpkg.internal.sppkglegacy.SupportPackageRegistryPluginBase" in the code. The error message suggests that this function is excluded from packaging for the MATLAB Runtime environment according to the MATLAB Compiler license.
To resolve this error, you can either remove the file or function from your code or use the MATLAB function "isdeployed" to ensure the function is not invoked in the deployed component. The "isdeployed" function checks whether the code is running in the deployed component or not.
if ~isdeployed
% Use the function here
matlabshared.supportpkg.internal.sppkglegacy.SupportPackageRegistryPluginBase()
end
There can be several possibilities for this error, such as:
So it would be nice to upload your code for further support
2 comentarios
Joe Rushton
el 27 de Jun. de 2023
I have a similar warning - code was previously compiling and working in a deployed application. Please help.
Warning: In "C:\ProgramData\MATLAB\SupportPackages\R2021b\toolbox\imaq\supportpackages\gentl\+matlabshared\+supportpkg\+internal\+sppkglegacy\GenICamInterface.m", "matlabshared.supportpkg.internal.sppkglegacy.SupportPackageRegistryPluginBase" are excluded from packaging for the MATLAB Runtime environment according to the MATLAB Compiler license. Either remove the file or function from your code, or use the MATLAB function "isdeployed" to ensure the function is not invoked in the deployed component.
Ver también
Categorías
Más información sobre Get Started with MATLAB Compiler en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!