user15888895
user15888895

Reputation: 13

UWP unable to Upload the App to windows store as getting Supported API Error

Using Private nuget dll packages, where facing an issue for windows store release, as we are using the local references for the below packages.

Supported APIs Error Found: The supported APIs test detected the following errors: API __std_type_info_destroy_list in vcruntime140.dll is not supported for this application type. custom_sqlite3.dll calls this API. API _except_handler4_common in vcruntime140.dll is not supported for this application type. custom_sqlite3.dll calls this API. API memcpy in vcruntime140.dll is not supported for this application type. custom_sqlite3.dll calls this API. API memmove in vcruntime140.dll is not supported for this application type. custom_sqlite3.dll calls this API. API memset in vcruntime140.dll is not supported for this application type. custom_sqlite3.dll calls this API. Impact if not fixed: Using an API that is not part of the Windows SDK for Microsoft Store apps violates the Microsoft Store certification requirements. How to fix: Review the error messages to identify the API that is not part of the Windows SDK for Microsoft 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

Can someone help me on this. Thanks

Upvotes: 1

Views: 200

Answers (1)

KiShOrE
KiShOrE

Reputation: 925

Make sure not to have the other dll than NuGet package, I think somewhere holding the other library exists, delete them and try to run through the Microsoft certificate test kit.

Please approve as the answer if this resolves your issue.

Upvotes: 0

Related Questions