9

我正在开发一个Windows phone 8.1应用程序,它与Microsoft Band连接以发送一些通知。我需要执行一些后台任务,所以我添加了一个Windows 运行时组件项目。

我正在从后台任务(即从运行时组件项目)发送通知。但我收到一个错误。错误如下:

错误: System.TypeInitializationException:“Microsoft.Band.Store.StoreResources”的类型初始化程序引发异常。---> System.Exception:在 Microsoft.Band.Store.StoreResources..cctor() 的 Windows.UI.Xaml.Application.get_Current() 处发生灾难性故障(HRESULT 异常:0x8000FFFF (E_UNEXPECTED)) --- 结束内部异常堆栈跟踪 --- 在 Microsoft.Band.Store.BluetoothTransport.GetTransport(RfcommDeviceService service, ILoggerProvider loggerProvider, UInt16 maxConnectAttempts) 在 Microsoft.Band.Store.BluetoothTransport 的 Microsoft.Band.Store.StoreResources.get_RfComm_FromId_ReturnedNull()。<> c__DisplayClass1.b__0() 在 System.Threading.Tasks.Task`1.InnerInvoke() 在 System.Threading.Tasks.Task.Execute()

正如这个问题的答案中所说,前台应用程序不应该在后台应用程序尝试连接时尝试连接到乐队。

  • 我的前台应用程序没有尝试连接,也没有与乐队有任何联系。

我认为错误是连接蓝牙的问题,因为我已经调试并找到了错误的位置:

public async void Run(IBackgroundTaskInstance taskInstance)
    {
        var deferral = taskInstance.GetDeferral();

        try
        {
            Debug.WriteLine("Task Triggered " + DateTime.Now);
            taskInstance.Canceled += (s, e) => { };
            taskInstance.Progress = 0;

            // Get the list of Microsoft Bands paired to the phone.
            var pairedBands = await BandClientManager.Instance.GetBandsAsync();
            if (pairedBands.Length < 1)
            {
                Debug.WriteLine(
                    "This sample app requires a Microsoft Band paired to your device. Also make sure that you have the latest firmware installed on your Band, as provided by the latest Microsoft Health app.");
                return;
            }

            // This is the line I am getting the error
            using (var bandClient = await BandClientManager.Instance.ConnectAsync(pairedBands[0]))
            {
                Debug.WriteLine("Tile creation started");

我的手环蓝牙与 Microsoft Health 应用程序连接良好,所以我想我的手机和手环的蓝牙没有问题。

我的Package.appmanifest for Foreground 应用程序如下:

前台应用程序包.appmanifest

后台任务的Package.appmanifest(Windows 运行时组件项目):

<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest">
<Capabilities>
<DeviceCapability Name="bluetooth.rfcomm" xmlns="http://schemas.microsoft.com/appx/2013/manifest">
<Device Id="any">
    <!-- Used by the Microsoft Band SDK -->
    <Function Type="serviceId:A502CA9A-2BA5-413C-A4E0-13804E47B38F" />
    <!-- Used by the Microsoft Band SDK -->
    <Function Type="serviceId:C742E1A2-6320-5ABC-9643-D206C677E580" />
  </Device>
</DeviceCapability>

那么可能的问题是什么?您能提供解决方案或解决此问题的方法吗?

4

2 回答 2

1

您是否在 Package.appxmanifest 文件中设置了正确的功能和声明?

作为最低要求,您需要在功能(使用蓝牙)中勾选“Proximity”,并在声明中为后台任务指定类型和入口点。

于 2015-07-12T09:10:03.723 回答
0

好吧,经过大量尝试,我终于找到了解决方案。虽然我无法找出错误的实际原因,但我得到了一个可行的解决方案。

代码现在如下所示:

public async void Run(IBackgroundTaskInstance taskInstance)
    {
        Debug.WriteLine("Task triggered");

        var deferral = taskInstance.GetDeferral();
        var bandInfo = (await BandClientManager.Instance.GetBandsAsync()).FirstOrDefault();
        IBandClient bandClient = null;
        if (bandInfo != null)
        {
            Debug.WriteLine("Band found");
            try
            {
                bandClient = await BandClientManager.Instance.ConnectAsync(bandInfo);
            }
            catch (Exception ex)
            {
                Debug.WriteLine("Exception: " + ex);
            }

            if (bandClient != null)
            {
                try
                {
                    Debug.WriteLine("Band connected: " + bandClient.GetFirmwareVersionAsync().Result);
                    var bandContactState = await bandClient.SensorManager.Contact.GetCurrentStateAsync();
                    Debug.WriteLine(bandContactState.State == BandContactState.NotWorn
                        ? "Band not worn"
                        : "Band worn");
                }
                catch (Exception ex)
                {
                    Debug.WriteLine("Exception 1: "+ ex);
                }
            }
        }
        if (bandClient != null)
        {
            deferral.Complete();
            bandClient.Dispose();
            bandClient = null;
        }
    }

前台和后台任务的包清单与问题中的相同。

唯一的区别是Microsoft.Bandpackage version: 1.3.10417.1,这是我从 Microsoft 提供的工作示例中获取的。以前我用过 version 1.3.10702.1

于 2015-07-23T18:27:04.247 回答