Windows应用商店认证-SQLite错误

Windows应用商店认证-SQLite错误,sqlite,windows-runtime,windows-store-apps,Sqlite,Windows Runtime,Windows Store Apps,由于以下两个错误,我无法通过Windows应用程序认证测试: Package compliance test FAILED MyApp takes a dependency on Microsoft Visual C++ Runtime Package (Microsoft.VCLibs.120.00) framework but is missing the framework dependency declaration in the manifest. Supported API

由于以下两个错误,我无法通过Windows应用程序认证测试:

Package compliance test
FAILED
   MyApp takes a dependency on Microsoft Visual C++ Runtime Package (Microsoft.VCLibs.120.00) framework but is missing the framework dependency declaration in the manifest.

Supported API test
FAILED
API RoReportUnhandledError in api-ms-win-core-winrt-error-l1-1-1.dll is not supported for this application type. SQLiteWinRT.dll calls this API.
API ??0AccessDeniedException@Platform@@Q$AAA@P$AAVString@1@@Z in vccorlib120_app.dll is not supported for this application type. SQLiteWinRT.dll calls this API.
API ??0COMException@Platform@@Q$AAA@HP$AAVString@1@@Z in vccorlib120_app.dll is not supported for this application type. SQLiteWinRT.dll calls this API.
.....
API malloc in msvcr120_app.dll is not supported for this application type. SQLiteWinRT.dll calls this API.
API memcpy in msvcr120_app.dll is not supported for this application type. SQLiteWinRT.dll calls this API.
应用程序类型:Windows Metro
平台:Windows 8

在那里,我添加SQLite项目作为对我的项目的引用


有人遇到过同样的情况吗?

您需要使用Windows应用商店特定的库。请参阅。

我知道这些DLL,但没有一个对我有效。正如我所说的,我的目标是Windows8而不是8.1,只有为我设计的解决方案包括在内。Sqlite.cs作为单独的项目并添加对该项目的引用您是否尝试过nuget包?你找到这个问题的答案了吗?