UWP应用提交应用商店时未通过Supported API test,请问怎么解决?
提示信息如下
Supported API test
FAILED
Supported APIs
Error Found: The supported APIs test detected the following errors:
API system in api-ms-win-crt-runtime-l1-1-0.dll is not supported for this application type. VideoCoreDll.dll calls this API.
API _pclose in api-ms-win-crt-stdio-l1-1-0.dll is not supported for this application type. VideoCoreDll.dll calls this API.
API _popen in api-ms-win-crt-stdio-l1-1-0.dll is not supported for this application type. VideoCoreDll.dll calls this API.
API getenv in api-ms-win-crt-environment-l1-1-0.dll is not supported for this application type. VideoCoreDll.dll calls this API.
Impact if not fixed: Using an API that is not part of the Windows SDK for Windows Store apps violates the Windows
Store certification requirements.
How to fix: Review the error messages to identify the API that is not part of the Windows SDK for Windows Store
apps. Please note, apps that are built in a debug configuration or without .NET Native enabled (where applicable) can fail this test as these environments may pull in unsupported APIs. Retest your app in a release configuration, and with .NET Native enabled
if applicable. See the link below for more information:
补充一下
提示信息里提到的VideoCoreDll.dll是从原来的windows8应用中复制源代码过来的,编译时用了.net native tool chain,里面提到的API我找不到在哪里引用过,求解