如何在AppxManifest文件中添加位置跟踪?

时间:2012-12-27 01:19:29

标签: geolocation manifest winrt-xaml windows-phone-8

根据此演示文稿中的代码:http://channel9.msdn.com/Series/MVA-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8

...我试图将“LocationTracking”添加到WMAppManifest.xml,但是没有显示的xaml:

<Tasks>
<DefaultTask Name="_default" NavigationPage="MainPage.xaml">
      <BackgroundExecution>
        <ExecutionType Name="LocationTracking" />
      </BackgroundExecution>
</DefaultTask>
</Tasks>

...以及以下内容,类似于编译器似乎想要的内容:

  <ExtendedTask>
    <ExecutionType Name="LocationTracking" />
  </ExtendedTask>

...会编译。

有人如何使这个工作?

1 个答案:

答案 0 :(得分:1)

你在那里的第一个代码片段工作得很好。您没有添加整个<Task>元素,因为它已经是WmAppmanfiest的一部分,只需添加<BackgroundExecution/>嵌套元素即可。

对于端到端示例see this article,您可以下载示例代码here