使用Microsoft.Azure.Mobile.Client安卓apk时出错

时间:2017-06-26 21:18:17

标签: android xamarin azure-mobile-services

我有一个使用Microsoft.Azure.Mobile.Client SDK的项目。当我在VS的模拟器中运行它时一切都很好。但是当我在TC服务器上构建apk并将其安装在真正的Android设备上时 - 我收到了以下错误: <connectionStrings> <add name="Connection" connectionString="Data Source=k:\Temp; xtended Properties=dBase IV Provider=Microsoft.Jet.OLEDB.4.0" /> </connectionStrings> string connection = ConfigurationManager.ConnectionStrings["Connection"].ConnectionString; using (OleDbConnection dBaseConnection = new OleDbConnection(connection)) { if (dBaseConnection.State == ConnectionState.Closed) { dBaseConnection.Open(); } } 。我怎么能解决这个问题?我正在使用Microsoft.Azure.Mobile.Client包v 3.1.0。 我是使用以下命令buildin apk: VTable setup of type Microsoft.WindowsAzure.MobileService.Eventing.MobileServiceEventManager failed

1 个答案:

答案 0 :(得分:0)

目标框架是Android 5的问题。当我将其更改为最新版本(android 7)时 - 一切正常。