- 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 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Eswaramoorthy
2023-5-1
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 个评论
Joe Rushton
2023-6-27
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Get Started with MATLAB Compiler 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!