Sqlite受支持的API测试检测到以下错误

Sqlite受支持的API测试检测到以下错误,sqlite,windows-phone-8.1,Sqlite,Windows Phone 8.1,我已完成Windows Phone 8.1的应用程序。我使用过sqlite数据库。当我运行WACK时,我得到了这个错误。有人告诉我尝试卸载kb 2976978更新,但我没有任何同名更新 我如何解决这个问题 受支持的API测试检测到以下错误: This API is not supported for this application type - Api=sqlite3_bind_blob. Module=sqlite3.dll. File=Sqlite.dll. This API is not

我已完成Windows Phone 8.1的应用程序。我使用过sqlite数据库。当我运行WACK时,我得到了这个错误。有人告诉我尝试卸载kb 2976978更新,但我没有任何同名更新

我如何解决这个问题

受支持的API测试检测到以下错误:

This API is not supported for this application type - Api=sqlite3_bind_blob. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_bind_double. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_bind_int. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_bind_int64. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_bind_null. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_bind_parameter_index. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_bind_text16. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_busy_timeout. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_changes. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_close. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_column_blob. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_column_bytes. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_column_count. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_column_double. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_column_int. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_column_int64. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_column_name. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_column_text16. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_column_type. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_errmsg. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_extended_errcode. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_finalize. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_last_insert_rowid. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_mprintf. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_open. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_open_v2. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_prepare16_v2. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_reset. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_step. Module=sqlite3.dll. File=Sqlite.dll.
This API is not supported for this application type - Api=sqlite3_temp_directory. Module=sqlite3.dll. File=Sqlite.dll.

您是否在应用程序包中包含
sqlite3.dll
?该WACK在“默认情况下拒绝”的基础上工作,因此,如果您使用的API(a)不在包中或(b)不在允许列表中,那么它将被拒绝。如果
sqlite3.dll
不在您的应用程序包中,WACK会假定它是一个操作系统二进制文件,并且由于它不在允许列表中,您会收到一个错误。

您构建应用程序包时使用了哪些设置?在发布模式和ARM上,您解决了问题吗?