- 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 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Eswaramoorthy
le 1 Mai 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 commentaires
Joe Rushton
le 27 Juin 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.
Voir également
Catégories
En savoir plus sur Get Started with MATLAB Compiler dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!