<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9</title>
    <atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/ptaavs/Posts/RSS"></atom:link>
    <itunes:summary></itunes:summary>
    <itunes:author>Microsoft</itunes:author>
    <itunes:subtitle></itunes:subtitle>
    <image>
      <url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
      <title>Channel 9</title>
      <link>http://channel9.msdn.com/Niners/ptaavs/Posts</link>
    </image>
    <itunes:image href=""></itunes:image>
    <itunes:category text="Technology"></itunes:category>
    <description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
    <link>http://channel9.msdn.com/Niners/ptaavs/Posts</link>
    <language>en</language>
    <pubDate>Fri, 24 May 2013 08:31:16 GMT</pubDate>
    <lastBuildDate>Fri, 24 May 2013 08:31:16 GMT</lastBuildDate>
    <generator>Rev9</generator>
    <c9:totalResults>83</c9:totalResults>
    <c9:pageCount>4</c9:pageCount>
    <c9:pageSize>25</c9:pageSize>
  <item>
      <title>IWP54 | Windows Phone Data Binding and the Magic of XAML</title>
      <description><![CDATA[<p><a href="http://wp8samples.azurewebsites.net/TwitterBindingSample.zip">Download the sample project seen in this video.</a></p><p><pre class="brush: text">&lt;TextBox Text=&quot;{Binding SampleUserName, Mode=TwoWay}&quot; /&gt;</pre>Data binding is one of the fundamental concepts for good Windows Phone application design but can be difficult to grasp for newcomers. The core concept is this: No one wants to manually update the user interface elements. I want my UI to automatically reflect the state of my application and data binding helps us do this. We can work exclusively on our Windows Phone UI, bind the values in the UI and then work on the inner logic of the application knowing that all the updates are being reflected to the user. Because of the power in the model you see in this video and post, there are some really great &quot;fringe&quot; benefits in terms of interaction and design that we get along with the core benefits.</p><p>So let's build our first data binding. By a happy coincidence,&nbsp;this can also be our first ViewModel from scratch.</p><p>I use Visual Studio snippets in the video and in &quot;real life&quot; because it's substantially faster and I have a very poor memory. You can <a href="http://wp8samples.azurewebsites.net/notifySnippets.zip">download the notify property snippets I used here</a>. Just extract them into your &quot;Documents\Visual Studio 2012\Code Snippets\Visual C#\My Code Snippets&quot; folder and you should be ready to go.</p><p>As a &quot;first steps&quot; post, we're going to go through how to build a data binding step by step. To see this model in action, just open up a new</p><p><strong>My First Data Binding</strong> <br><br>In our app, lets create a new ViewModel. I right-clicked in the ViewModel folder and went to &quot;App -&gt; Class...&quot; and created just an empty Class file named &quot;SampleViewModel.cs&quot;. This class now looks like this:</p><p><pre class="brush: csharp">class SampleViewModel
{
}</pre></p><p>We update it to implement the INotifyPropertyChanged event by declaring that interface&nbsp;and using the &quot;notifyInterface&quot; snippet. Hit Alt-Shift-F10 to resolve any refrerences (specifically the System.ComponentModel)&nbsp;and our code should now look like this:</p><p><pre class="brush: csharp">public class SampleViewModel : INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;

    protected void NotifyPropertyChanged(string propertyName)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null)
        {
            handler(this, new PropertyChangedEventArgs(propertyName));
        }
    }     
}</pre></p><p>Now we can just start creating properties we want to see reflected in our UI. Using our &quot;notifyProp&quot; snippet, we can quickly create a property like the string SampleUserName.</p><p><pre class="brush: csharp">private string _sampleUserName = &quot;&quot;;
public string SampleUserName
{
    get { return _sampleUserName; }
    set
    {
        _sampleUserName = value;
        NotifyPropertyChanged(&quot;SampleUserName&quot;);
    }
}</pre></p><p>Now our property is ready to be bound to our XAML.</p><p><strong>Define Your Data Context</strong></p><p>This part can be skipped for brevity, but I wanted to add it to make sure that there is a complete and comprehensive solution here.</p><p>Before our XAML can bind to this property, we need to make the ViewModel visible to our XAML. So we will declare our ViewModel as a static object in our App.xaml.cs</p><p><pre class="brush: csharp">private static SampleViewModel _sampleVM { get; set; }
public static SampleViewModel SampleVM
{
    get{
        if (_sampleVM == null)
            _sampleVM = new SampleViewModel();
        return _sampleVM;
    }
}</pre></p><p>Then we can set the data context when our XAML view initializes. In the MyView.xaml.cs (also called the &quot;code behind), we can add to the constructor:</p><p><pre class="brush: csharp">public MyView()
{
    InitializeComponent();
    this.DataContext = App.SampleVM;
}</pre></p><p>This way we could have the same ViewModel driving multiple Views. This is particularly valuable for a Master-Detail scenario <span>in which we have one View dedicated to showing a list of items and another View for editing or looking at an item detail. With this method, we can maintain a single ViewModel and simply update which item has been selected.</span></p><p><strong>XAML Binding</strong></p><p>With our viewmodel defined and our notify properties set up, all we need to do is bind to our XAML UI control. Then any updates we make to our property back in the ViewModel will automatically update in the XAML UI.</p><p><pre class="brush: xml">&lt;TextBox Text=&quot;{Binding SampleUserName}&quot; /&gt;</pre></p><p>And if we wanted changes to the UI to be updated back in our ViewModel, we just set our binding to &quot;TwoWay&quot;</p><p><pre class="brush: xml">&lt;TextBox Text=&quot;{Binding SampleUserName, Mode=TwoWay}&quot; /&gt;</pre></p><p><strong>Binding, Sample Data, and Design</strong></p><p>In addition to helping us build manageable code with a simple model for XAML UI updates, binding allows us to build our app interfaces in a way that is fast and powerful. Instead of run-view-tweak, run-view-tweak, we can explore design options and do most of our design right inside our tooling without running the application. In fact,&nbsp;if&nbsp;you follow the steps here, you can actually build&nbsp;much of the interaction and&nbsp;XAML of an application up&nbsp;before you start building the logic. The result is the opportunity for a workflow that supports design-driven user-focused application creation.</p><p><span>For this, we're going to move away from our SimpleViewModel with its single property and into a real-world example that<br>focuses on binding with real-world data. </span>To follow along in this example, <a href="http://wp8samples.azurewebsites.net/TwitterBindingSample.zip">download this slightly modified version of the LongListSelector Infinite Scroll example</a> for Windows Phone.</p><p>Because we're working with sample data, we want to open the project in Blend.</p><ol><li>Open up the MainPage.xaml file and go to the Data tab at the top right corner. </li><li>Select the project data store and click on the &quot;Create sample data -&gt; Create Sample Data From Class&quot; button. </li></ol><p><img src="http://files.channel9.msdn.com/thumbnail/0e963fca-e777-4ab4-9987-c907ac80caed.png" alt=""></p><p>&nbsp;You'll get a dialog box that allows you to name your data source and select a class from which Blend will generate the data.</p><p><img src="http://files.channel9.msdn.com/thumbnail/362ab00f-abbf-442f-97db-04c0c5f66bf2.png" alt=""></p><p>Blend will do a &quot;best guess&quot; on what data is in there based on the data types. String will default to lorem ipsum sample text, and int will generate a number, an ObservableCollection will result in a generated list of sample objects. All this data will be saved as a XAML resource file in the SampleData folder. To create bindings for these objects, all we would have to do is drag the object from our Data tab to an control in our &quot;Objects and Timeline&quot; tab.</p><p>We could go into this file and edit the data to be something that is a little more realistic for our application. In fact, this is exactly what I've done. For this Twitter app, I added some actual tweets from my timeline as sample data. To see this click on the eye icon next to the &quot;resultListBox&quot;.</p><p>&nbsp;<img src="http://files.channel9.msdn.com/thumbnail/4e8cf4d5-e73c-417f-9c5c-34f1737b4537.png" alt=""></p><p>And now we can see the sample data and how it will look in the application.</p><p><img src="http://files.channel9.msdn.com/thumbnail/3d25c01d-9467-4260-bc5c-d5238ce6aba7.png" alt=""></p><p>Here is where it gets really fun: Right-click on the resultListBox and select &quot;Edit Additional Templates -&gt; Edit ItemTemplate -&gt; Edit Current&quot;.</p><p><img src="http://files.channel9.msdn.com/thumbnail/75c980d7-8fc3-4eb8-b95b-3b347acca97b.png" alt=""></p><p>This will take you to a XAML DataTemplate where we can define, in real time and against real data, how we want our items to be displayed. We could give our tweet text a height limit and tell it to use ellipses and see that reflected instantly in our design.</p><p><pre class="brush: xml">&lt;TextBlock Text=&quot;{Binding Tweet}&quot; 
   MaxHeight=&quot;40&quot;
   TextTrimming=&quot;WordEllipsis&quot; /&gt;</pre></p><p><img src="http://files.channel9.msdn.com/thumbnail/a43d4f9a-dfbc-4e2f-957e-eb09960468f3.png" alt=""></p><p>As you can see, this is an incredibly powerful way to design and build applications for Windows Phone and it is all made possible by DataBinding.</p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:9fc8ba9792df47b9b46aa1af01506353">]]></description>
      <comments>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP54--Windows-Phone-Data-Binding-and-the-Magic-of-XAML</comments>
      <itunes:summary>Download the sample project seen in this video. &amp;lt;TextBox Text=&amp;quot;{Binding SampleUserName, Mode=TwoWay}&amp;quot; /&amp;gt;Data binding is one of the fundamental concepts for good Windows Phone application design but can be difficult to grasp for newcomers. The core concept is this: No one wants to manually update the user interface elements. I want my UI to automatically reflect the state of my application and data binding helps us do this. We can work exclusively on our Windows Phone UI, bind the values in the UI and then work on the inner logic of the application knowing that all the updates are being reflected to the user. Because of the power in the model you see in this video and post, there are some really great &amp;quot;fringe&amp;quot; benefits in terms of interaction and design that we get along with the core benefits. So let&#39;s build our first data binding. By a happy coincidence,&amp;nbsp;this can also be our first ViewModel from scratch. I use Visual Studio snippets in the video and in &amp;quot;real life&amp;quot; because it&#39;s substantially faster and I have a very poor memory. You can download the notify property snippets I used here. Just extract them into your &amp;quot;Documents\Visual Studio 2012\Code Snippets\Visual C#\My Code Snippets&amp;quot; folder and you should be ready to go. As a &amp;quot;first steps&amp;quot; post, we&#39;re going to go through how to build a data binding step by step. To see this model in action, just open up a new My First Data Binding In our app, lets create a new ViewModel. I right-clicked in the ViewModel folder and went to &amp;quot;App -&amp;gt; Class...&amp;quot; and created just an empty Class file named &amp;quot;SampleViewModel.cs&amp;quot;. This class now looks like this: class SampleViewModel
{
} We update it to implement the INotifyPropertyChanged event by declaring that interface&amp;nbsp;and using the &amp;quot;notifyInterface&amp;quot; snippet. Hit Alt-Shift-F10 to resolve any refrerences (specifically the System.ComponentModel)&amp;nbsp;and our code should now look like this: p</itunes:summary>
      <itunes:duration>1076</itunes:duration>
      <link>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP54--Windows-Phone-Data-Binding-and-the-Magic-of-XAML</link>
      <pubDate>Thu, 02 May 2013 20:37:02 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP54--Windows-Phone-Data-Binding-and-the-Magic-of-XAML</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54_512.jpg" height="288" width="512"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54_960.jpg" height="540" width="960"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54.mp3" expression="full" duration="1076" fileSize="17220740" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54.mp4" expression="full" duration="1076" fileSize="104773559" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54.webm" expression="full" duration="1076" fileSize="50641251" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54.wma" expression="full" duration="1076" fileSize="8707619" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54.wmv" expression="full" duration="1076" fileSize="49600703" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54_high.mp4" expression="full" duration="1076" fileSize="228193621" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54_mid.mp4" expression="full" duration="1076" fileSize="159609421" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54_Source.wmv" expression="full" duration="1076" fileSize="219424278" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54.ism/manifest" expression="full" duration="1076" fileSize="5966" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/5163/aa5496aa-869c-43ba-abb7-fe86d7995163/iwp54.wmv" length="49600703" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Matthias Shapiro, Larry Lieberman</dc:creator>
      <itunes:author>Matthias Shapiro, Larry Lieberman</itunes:author>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP54--Windows-Phone-Data-Binding-and-the-Magic-of-XAML/RSS</wfw:commentRss>
    </item>
  <item>
      <title>IWP53 | Matthias on Samples</title>
      <description><![CDATA[<p>What code samples do we have and how do you get them? We try to create and maintain a large number of code samples covering a wide array of developer scenarios. In this episode we're going to spend some time going over a few of the samples that are available, as well as some ways to find them.</p><p>Here are links to some of the resources we discussed:</p><ul><li>Matthias's&nbsp;<a href="http://blogs.msdn.com/b/matthiasshapiro/archive/2013/03/21/10-great-windows-phone-8-code-samples-no-wait-30.aspx" target="_blank">blog post </a>that highlights some awesome Windows Phone&nbsp;samples, and where to get them </li><li>The <a href="http://code.msdn.microsoft.com/site/search?f%5B0%5D.Type=Contributors&amp;f%5B0%5D.Value=Windows%20Phone%20SDK%20Team&amp;f%5B0%5D.Text=Windows%20Phone%20SDK%20Team" target="_blank">Windows Phone Dev Center samples</a> page – the&nbsp;complete list of samples created by the Windows Phone developer content&nbsp;team, by developers for developers </li><li>The <a href="http://code.msdn.microsoft.com/wpapps/Basic-Lens-sample-359fda1b" target="_blank">Lens sample</a> (check out <a href="http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj206990(v=vs.105).aspx" target="_blank">Lenses for Windows Phone 8</a> for an overview and walkthrough&nbsp;of how to build your Lens app) </li><li>The <a href="http://code.msdn.microsoft.com/wpapps/Photo-Extensibility-Sample-db289044" target="_blank">photo extensibility sample</a> (see <a href="http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh202966(v=vs.105).aspx" target="_blank">Photo extensibility for Windows Phone</a> for more info&nbsp;about how to use the sample and how to create your app) </li><li>The <a href="http://code.msdn.microsoft.com/wpapps/TwitterSearch-Windows-b7fc4e5e" target="_blank">Twitter search infinite scrolling sample</a> using the&nbsp;LongListSelector control in Windows Phone (check out the topic on <a href="http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj244365(v=vs.105).aspx">how&nbsp;to display data in a grouped list using LLS</a>) </li><li>The <a href="http://code.msdn.microsoft.com/wpapps/PeopleHub-Windows-Phone-80-88abe94d" target="_blank">People Hub LongListSelector sample</a>, with jump lists&nbsp;(be sure to see the topic on <a href="http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj244365(v=vs.105).aspx">how to display data in a grouped list using LLS</a> for info about using LLS&nbsp;for this sample, too) </li><li>A <a href="http://code.msdn.microsoft.com/wpapps/Speech-for-Windows-Phone-3771fc6d" target="_blank">speech recognition sample</a> that covers using a custom&nbsp;grammar (see <a href="http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj206959(v=vs.105).aspx">Voice&nbsp;commands for Windows Phone 8</a> for more info about how to use this feature in your app) </li></ul><p>Please let us know any questions you may have, or feedback.</p><p>&nbsp;Tweet to <a href="https://twitter.com/intent/tweet?screen_name=LarryALieberman" target="_blank">@LarryALieberman</a>&nbsp;or <a href="https://twitter.com/intent/tweet?screen_name=matthiasshap" target="_blank">@<span class="screen-name">matthiasshap</span></a></p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:77d382219d9f46eb8852a18d01757e18">]]></description>
      <comments>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP53--Matthias-on-Samples</comments>
      <itunes:summary>What code samples do we have and how do you get them? We try to create and maintain a large number of code samples covering a wide array of developer scenarios. In this episode we&#39;re going to spend some time going over a few of the samples that are available, as well as some ways to find them. Here are links to some of the resources we discussed: Matthias&#39;s&amp;nbsp;blog post that highlights some awesome Windows Phone&amp;nbsp;samples, and where to get them The Windows Phone Dev Center samples page – the&amp;nbsp;complete list of samples created by the Windows Phone developer content&amp;nbsp;team, by developers for developers The Lens sample (check out Lenses for Windows Phone 8 for an overview and walkthrough&amp;nbsp;of how to build your Lens app) The photo extensibility sample (see Photo extensibility for Windows Phone for more info&amp;nbsp;about how to use the sample and how to create your app) The Twitter search infinite scrolling sample using the&amp;nbsp;LongListSelector control in Windows Phone (check out the topic on how&amp;nbsp;to display data in a grouped list using LLS) The People Hub LongListSelector sample, with jump lists&amp;nbsp;(be sure to see the topic on how to display data in a grouped list using LLS for info about using LLS&amp;nbsp;for this sample, too) A speech recognition sample that covers using a custom&amp;nbsp;grammar (see Voice&amp;nbsp;commands for Windows Phone 8 for more info about how to use this feature in your app) Please let us know any questions you may have, or feedback. &amp;nbsp;Tweet to @LarryALieberman&amp;nbsp;or @matthiasshap </itunes:summary>
      <itunes:duration>863</itunes:duration>
      <link>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP53--Matthias-on-Samples</link>
      <pubDate>Fri, 19 Apr 2013 17:42:18 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP53--Matthias-on-Samples</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53.mp3" expression="full" duration="863" fileSize="13823132" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53.mp4" expression="full" duration="863" fileSize="83662893" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53.webm" expression="full" duration="863" fileSize="30197793" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53.wma" expression="full" duration="863" fileSize="6992335" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53.wmv" expression="full" duration="863" fileSize="44824607" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53_high.mp4" expression="full" duration="863" fileSize="183547674" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53_mid.mp4" expression="full" duration="863" fileSize="127899612" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53_Source.wmv" expression="full" duration="863" fileSize="176784290" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/49d2/ed7832f8-bdee-4f07-bf5f-9645cef449d2/IWP53.wmv" length="44824607" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Larry Lieberman</dc:creator>
      <itunes:author>Larry Lieberman</itunes:author>
      <slash:comments>1</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP53--Matthias-on-Samples/RSS</wfw:commentRss>
      <category>Windows Phone</category>
    </item>
  <item>
      <title>IWP52 | Clint on the Coding For Fun Toolkit</title>
      <description><![CDATA[<p>The 'Coding 4 Fun' Toolkit is a powerful set of controls and libraries that you can leverage for free, to add rich features and functionality to your XAML Windows Phone application.</p><p>Today we talked to Clint Rutkas, the creator of this toolkit, about some of the thinking behind it, and some of the cool things you can do with it.</p><p>Here are some links to related information we discussed:</p><ul><li><a href="http://coding4fun.codeplex.com/" target="_blank">Coding 4 Fun on CodePlex</a> </li><li><a href="http://channel9.msdn.com/Niners/Clint/" target="_blank">Clint Rutkas' page on Channel 9</a> </li><li><a href="http://wpdev.ms/beginvids" target="_blank">Windows Phone Development for Absolute Beginners</a> </li><li><a href="http://blogs.msdn.com/b/bclteam/archive/2013/02/18/portable-httpclient-for-net-framework-and-windows-phone.aspx" target="_blank">Portable HttpClient for Windows Phone</a>, (in beta) </li><li><a href="http://phone.codeplex.com/" target="_blank">Windows Phone Toolkit </a>on CodePlex </li><li><a href="http://www.codeproject.com/Articles/345129/Windows-Phone-7-Navigation-Transitions" target="_blank">Info on using transitions from the toolkit</a>, (from the Code Project) </li></ul><p>Questions:</p><p>Tweet to <a href="https://twitter.com/intent/tweet?screen_name=LarryALieberman" target="_blank">@LarryALieberman</a></p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:2eb777c1a8d547e5a730a1860141faaf">]]></description>
      <comments>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP52--Clint-on-the-Coding-For-Fun-Toolkit</comments>
      <itunes:summary>The &#39;Coding 4 Fun&#39; Toolkit is a powerful set of controls and libraries that you can leverage for free, to add rich features and functionality to your XAML Windows Phone application. Today we talked to Clint Rutkas, the creator of this toolkit, about some of the thinking behind it, and some of the cool things you can do with it. Here are some links to related information we discussed: Coding 4 Fun on CodePlex Clint Rutkas&#39; page on Channel 9 Windows Phone Development for Absolute Beginners Portable HttpClient for Windows Phone, (in beta) Windows Phone Toolkit on CodePlex Info on using transitions from the toolkit, (from the Code Project) Questions: Tweet to @LarryALieberman </itunes:summary>
      <itunes:duration>1168</itunes:duration>
      <link>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP52--Clint-on-the-Coding-For-Fun-Toolkit</link>
      <pubDate>Fri, 05 Apr 2013 21:20:51 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP52--Clint-on-the-Coding-For-Fun-Toolkit</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52.mp3" expression="full" duration="1168" fileSize="18698394" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52.mp4" expression="full" duration="1168" fileSize="111471275" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52.webm" expression="full" duration="1168" fileSize="43422137" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52.wma" expression="full" duration="1168" fileSize="9455615" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52.wmv" expression="full" duration="1168" fileSize="66357965" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52_high.mp4" expression="full" duration="1168" fileSize="243850856" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52_mid.mp4" expression="full" duration="1168" fileSize="170456579" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52_Source.wmv" expression="full" duration="1168" fileSize="684243294" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52.ism/manifest" expression="full" duration="1168" fileSize="8318" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/8cec/d9ab69f1-7533-43f9-b7e9-70ebdd558cec/IWP52.wmv" length="66357965" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Larry Lieberman</dc:creator>
      <itunes:author>Larry Lieberman</itunes:author>
      <slash:comments>7</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP52--Clint-on-the-Coding-For-Fun-Toolkit/RSS</wfw:commentRss>
      <category>Windows Phone</category>
    </item>
  <item>
      <title>IWP51: JC shows us his Moga</title>
      <description><![CDATA[<p>I met up with my colleague Jean- Christophe Cimetiere at GDC today, where he demonstrated the Moga Controller working with Windows Phone.</p><p>Find out more about the Moga controller at <a href="http://www.mogaanywhere.com/">http://www.mogaanywhere.com/</a>.</p><p>Questions?</p><p>Tweet to <a href="https://twitter.com/intent/tweet?screen_name=LarryALieberman" target="_blank">@LarryALieberman</a></p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:0e870b95894841689eb0a18d00eb6329">]]></description>
      <comments>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP51-JC-shows-us-his-Moga</comments>
      <itunes:summary>I met up with my colleague Jean- Christophe Cimetiere at GDC today, where he demonstrated the Moga Controller working with Windows Phone. Find out more about the Moga controller at http://www.mogaanywhere.com/. Questions? Tweet to @LarryALieberman </itunes:summary>
      <itunes:duration>183</itunes:duration>
      <link>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP51-JC-shows-us-his-Moga</link>
      <pubDate>Wed, 27 Mar 2013 14:45:00 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP51-JC-shows-us-his-Moga</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a.mp3" expression="full" duration="183" fileSize="2943391" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a.mp4" expression="full" duration="183" fileSize="18212949" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a.webm" expression="full" duration="183" fileSize="6988890" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a.wma" expression="full" duration="183" fileSize="1501023" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a.wmv" expression="full" duration="183" fileSize="24705311" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a_high.mp4" expression="full" duration="183" fileSize="39941485" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a_mid.mp4" expression="full" duration="183" fileSize="27958051" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a_Source.wmv" expression="full" duration="183" fileSize="446579257" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a.ism/manifest" expression="full" duration="183" fileSize="9894" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/a21b/59f48bc0-92d9-4475-9d9e-8fee30e6a21b/iwp51a.wmv" length="24705311" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Larry Lieberman</dc:creator>
      <itunes:author>Larry Lieberman</itunes:author>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP51-JC-shows-us-his-Moga/RSS</wfw:commentRss>
      <category>Windows  Phone</category>
    </item>
  <item>
      <title>IWP50 - Introducing Unity for Windows Phone Development</title>
      <description><![CDATA[<p>We're excited to announce the public availability of Unity for Windows Phone!</p><p>I spoke with Microsoft Technical Evangelist Vlad Kolesnikov about how developers can get started right now building games for both Windows and Windows Phone using the Unity game developer ecosystem tools.</p><p>We first took a look at the first game in the Windows Phone store built using the Unity tools: Drift Mania Championship, (available <a href="http://www.windowsphone.com/en-us/store/app/drift-mania-championship-2/2f377f5d-89b3-4143-9df5-bbf4b2eea113" target="_blank">here</a>), and then dove right into using the tools to build a basic game.</p><p>Look for more information about all of our GDC 2013 announcements in our <a href="http://wpdev.ms/developerblog" target="_blank">Official Developer Blog</a>.</p><p>Questions?</p><p>Tweet to <a href="https://twitter.com/intent/tweet?screen_name=LarryALieberman" target="_blank">@LarryALieberman</a></p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:d45595b960284b158ac7a1860115373e">]]></description>
      <comments>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP50-Introducing-Unity-for-Windows-Phone-Devleopment</comments>
      <itunes:summary>We&#39;re excited to announce the public availability of Unity for Windows Phone! I spoke with Microsoft Technical Evangelist Vlad Kolesnikov about how developers can get started right now building games for both Windows and Windows Phone using the Unity game developer ecosystem tools. We first took a look at the first game in the Windows Phone store built using the Unity tools: Drift Mania Championship, (available here), and then dove right into using the tools to build a basic game. Look for more information about all of our GDC 2013 announcements in our Official Developer Blog. Questions? Tweet to @LarryALieberman </itunes:summary>
      <itunes:duration>1162</itunes:duration>
      <link>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP50-Introducing-Unity-for-Windows-Phone-Devleopment</link>
      <pubDate>Wed, 27 Mar 2013 14:45:00 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP50-Introducing-Unity-for-Windows-Phone-Devleopment</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity.mp3" expression="full" duration="1162" fileSize="18600823" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity.mp4" expression="full" duration="1162" fileSize="113658485" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity.webm" expression="full" duration="1162" fileSize="35124586" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity.wma" expression="full" duration="1162" fileSize="9407551" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity.wmv" expression="full" duration="1162" fileSize="75477305" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity_high.mp4" expression="full" duration="1162" fileSize="247979626" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity_mid.mp4" expression="full" duration="1162" fileSize="173208193" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity_Source.wmv" expression="full" duration="1162" fileSize="237613945" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity.ism/manifest" expression="full" duration="1162" fileSize="6016" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/7c67/ec295653-53ef-4d1a-99a4-b2fc29dc7c67/IWP50Unity.wmv" length="75477305" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Larry Lieberman</dc:creator>
      <itunes:author>Larry Lieberman</itunes:author>
      <slash:comments>8</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP50-Introducing-Unity-for-Windows-Phone-Devleopment/RSS</wfw:commentRss>
      <category>Windows Phone</category>
    </item>
  <item>
      <title>IWP49 | How we pick great apps to showcase in the store</title>
      <description><![CDATA[<p>If you've ever gone to the Windows Store's <a href="http://www.windowsphone.com/en-us/store" target="_blank">website</a>, you've noticed that we promote certain apps and games in our Store. You may have asked yourself, 'how do they pick the apps and games that they showcase?' Our objective is to showcase the apps and games that are the best, so the natural question is: 'what constitutes &quot;the best&quot;'?</p><p>Kami LeMonds, from the Windows Phone Apps Merchandising team joined us today to discuss the criteria used in assessing application quality.</p><p>For more detail, see Kami's blog post from this week: <a href="http://blogs.windows.com/windows_phone/b/wpdev/archive/2013/01/31/how-to-get-your-app-promoted-in-the-windows-phone-store.aspx" target="_blank">How to get your app promoted in the Windows Phone Store</a>.</p><p>Questions?</p><p>Tweet to <a href="https://twitter.com/intent/tweet?screen_name=LarryALieberman" target="_blank">@LarryALieberman</a></p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:d0db1f0c75af4d79abbea15601237ce2">]]></description>
      <comments>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP49--How-we-pick-great-apps-to-showcase-in-the-store</comments>
      <itunes:summary>If you&#39;ve ever gone to the Windows Store&#39;s website, you&#39;ve noticed that we promote certain apps and games in our Store. You may have asked yourself, &#39;how do they pick the apps and games that they showcase?&#39; Our objective is to showcase the apps and games that are the best, so the natural question is: &#39;what constitutes &amp;quot;the best&amp;quot;&#39;? Kami LeMonds, from the Windows Phone Apps Merchandising team joined us today to discuss the criteria used in assessing application quality. For more detail, see Kami&#39;s blog post from this week: How to get your app promoted in the Windows Phone Store. Questions? Tweet to @LarryALieberman </itunes:summary>
      <itunes:duration>610</itunes:duration>
      <link>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP49--How-we-pick-great-apps-to-showcase-in-the-store</link>
      <pubDate>Thu, 31 Jan 2013 17:44:07 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP49--How-we-pick-great-apps-to-showcase-in-the-store</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49.mp3" expression="full" duration="610" fileSize="9767674" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49.mp4" expression="full" duration="610" fileSize="59299996" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49.webm" expression="full" duration="610" fileSize="20528802" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49.wma" expression="full" duration="610" fileSize="4943607" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49.wmv" expression="full" duration="610" fileSize="28849241" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49_high.mp4" expression="full" duration="610" fileSize="130267734" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49_mid.mp4" expression="full" duration="610" fileSize="91215363" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49_Source.wmv" expression="full" duration="610" fileSize="70756014" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49.ism/manifest" expression="full" duration="610" fileSize="5966" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/c026/486ffb93-9f54-46df-8738-b1348c2ec026/IWP49.wmv" length="28849241" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Larry Lieberman</dc:creator>
      <itunes:author>Larry Lieberman</itunes:author>
      <slash:comments>1</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP49--How-we-pick-great-apps-to-showcase-in-the-store/RSS</wfw:commentRss>
      <category>Windows Phone</category>
    </item>
  <item>
      <title>IWP48 | Lens Applications in Windows Phone 8</title>
      <description><![CDATA[<p>This week we spoke to Eric Bennett and Josh Debner from the Windows Phone camera team. Eric and Josh work on the new developer feature, Lens apps, and wanted to walk us through what it is and how it works.</p><p>Here are a few links to some of the resources we mentioned during the course of the conversation:</p><ul><li>MSDN library documentation on <a href="http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj206990(v=vs.105).aspx" target="_blank">Building Lens apps for Windows Phone</a>. </li><li>Eric's BUILD talk on <a href="http://channel9.msdn.com/Events/Build/2012/2-018" target="_blank">Building Lens Apps</a>. </li><li><a href="http://msdn.microsoft.com/library/windowsphone/design/jj662922(v=vs.105).aspx" target="_blank">Lens Design Guidelines</a> on MSDN </li><li><a href="http://code.msdn.microsoft.com/wpapps/Basic-Lens-sample-359fda1b" target="_blank">Lens Code Sample</a> on the MSDN Code Gallery </li></ul><p>Questions?</p><p><a class="twitter-mention-button" href="https://twitter.com/intent/tweet?screen_name=LarryALieberman">Tweet to @LarryALieberman</a></p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:496bb6fa11dd4c49addca11d01231802">]]></description>
      <comments>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP48--Lens-Applications-in-Windows-Phone-8</comments>
      <itunes:summary>This week we spoke to Eric Bennett and Josh Debner from the Windows Phone camera team. Eric and Josh work on the new developer feature, Lens apps, and wanted to walk us through what it is and how it works. Here are a few links to some of the resources we mentioned during the course of the conversation: MSDN library documentation on Building Lens apps for Windows Phone. Eric&#39;s BUILD talk on Building Lens Apps. Lens Design Guidelines on MSDN Lens Code Sample on the MSDN Code Gallery Questions? Tweet to @LarryALieberman </itunes:summary>
      <itunes:duration>601</itunes:duration>
      <link>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP48--Lens-Applications-in-Windows-Phone-8</link>
      <pubDate>Thu, 06 Dec 2012 18:07:28 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP48--Lens-Applications-in-Windows-Phone-8</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48.mp3" expression="full" duration="601" fileSize="9618045" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48.mp4" expression="full" duration="601" fileSize="57799744" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48.webm" expression="full" duration="601" fileSize="22496198" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48.wma" expression="full" duration="601" fileSize="4865503" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48.wmv" expression="full" duration="601" fileSize="37550237" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48_high.mp4" expression="full" duration="601" fileSize="126798306" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48_mid.mp4" expression="full" duration="601" fileSize="88579680" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48_Source.wmv" expression="full" duration="601" fileSize="101681923" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48.ism/manifest" expression="full" duration="601" fileSize="5966" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/1bab/67295810-38cb-4468-a75a-8a14db1c1bab/IWP48.wmv" length="37550237" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Larry Lieberman</dc:creator>
      <itunes:author>Larry Lieberman</itunes:author>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Shows/Inside+Windows+Phone/IWP48--Lens-Applications-in-Windows-Phone-8/RSS</wfw:commentRss>
      <category>Windows Phone</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (20) Mobile Web</title>
      <description><![CDATA[<p>Teresa Greiner joins Rob Tiffany for this strategic final session of the Building Apps for Windows Phone 8 Jump Start. By 2015, Gartner predicts that 80% of all mobile applications developed will be hybrid or mobile web-oriented. Teresa shares important approaches developers and application architects can take now to best prepare for this coming reality. Additionally, Teresa and Rob will discuss a myriad of mobile web best practices. Finally, Rob explains how you can leverage new HTML5 capabilities to build enterprise web apps.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web#time=04m56s">[04:56]</a> - Mobile Web facts </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web#time=12m43s">[12:43]</a> - Mobile Web best practices </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web#time=33m55s">[33:55]</a> - Leveraging HTML5 and IE10 to build web apps </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: Mobile Web </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:c9e9567d3ac0434cbb79a11b013f284a">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web</comments>
      <itunes:summary>Teresa Greiner joins Rob Tiffany for this strategic final session of the Building Apps for Windows Phone 8 Jump Start. By 2015, Gartner predicts that 80% of all mobile applications developed will be hybrid or mobile web-oriented. Teresa shares important approaches developers and application architects can take now to best prepare for this coming reality. Additionally, Teresa and Rob will discuss a myriad of mobile web best practices. Finally, Rob explains how you can leverage new HTML5 capabilities to build enterprise web apps. [04:56] - Mobile Web facts [12:43] - Mobile Web best practices [33:55] - Leveraging HTML5 and IE10 to build web apps Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>3145</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web</link>
      <pubDate>Tue, 04 Dec 2012 19:29:34 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20.mp3" expression="full" duration="3145" fileSize="50323361" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20.mp4" expression="full" duration="3145" fileSize="302572796" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20.webm" expression="full" duration="3145" fileSize="97633812" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20.wma" expression="full" duration="3145" fileSize="25436895" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20.wmv" expression="full" duration="3145" fileSize="148181261" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20_high.mp4" expression="full" duration="3145" fileSize="664417829" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20_mid.mp4" expression="full" duration="3145" fileSize="463626282" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20_Source.wmv" expression="full" duration="3145" fileSize="599899289" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20.ism/manifest" expression="full" duration="3145" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/f5e2/66990f7e-5916-40d1-9b3b-22176d1bf5e2/WP8JumpStart20.wmv" length="148181261" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>3</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web/RSS</wfw:commentRss>
      <category>HTML 5</category>
      <category>Mobile</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (19) Windows Phone 8 and Windows 8 Cross Platform Development</title>
      <description><![CDATA[<p>Building for consistent experiences across Windows devices (Tiles, Notifications, Animations for differing screen sizes, controls, Lifecycle), Minimizing Development through reuse (Portable Class Library) and Sharing Code from Windows Phone Runtime and the Windows Runtime, and Architecture (Architecture APIs, Visualizing Data, and Navigation).</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop#time=02m58s">[02:58]</a> - Building for Windows devices </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop#time=16m24s">[16:24]</a> - Strategies for sharing in a XAML app </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop#time=27m37s">[27:37]</a> - Code sharing </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop#time=35m18s">[35:18]</a> - Architecture </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:eb551f33b00c49688bbfa11b013edc1f">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop</comments>
      <itunes:summary>Building for consistent experiences across Windows devices (Tiles, Notifications, Animations for differing screen sizes, controls, Lifecycle), Minimizing Development through reuse (Portable Class Library) and Sharing Code from Windows Phone Runtime and the Windows Runtime, and Architecture (Architecture APIs, Visualizing Data, and Navigation). [02:58] - Building for Windows devices [16:24] - Strategies for sharing in a XAML app [27:37] - Code sharing [35:18] - Architecture Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>2685</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop</link>
      <pubDate>Tue, 04 Dec 2012 19:29:26 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19.mp3" expression="full" duration="2685" fileSize="42964048" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19.mp4" expression="full" duration="2685" fileSize="266665110" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19.webm" expression="full" duration="2685" fileSize="77751242" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19.wma" expression="full" duration="2685" fileSize="21717943" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19.wmv" expression="full" duration="2685" fileSize="108402245" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19_high.mp4" expression="full" duration="2685" fileSize="589749443" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19_mid.mp4" expression="full" duration="2685" fileSize="410216773" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19_Source.wmv" expression="full" duration="2685" fileSize="216774748" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19.ism/manifest" expression="full" duration="2685" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/982d/7388e67d-e18c-4c82-8d42-46aa2044982d/WP8JumpStart19.wmv" length="108402245" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>1</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop/RSS</wfw:commentRss>
      <category>Application Development</category>
      <category>Windows 8</category>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (18) Enterprise App Architecture</title>
      <description><![CDATA[<p>Rob Tiffany illustrates a variety of ways Windows Phone 8 can be effectively leveraged in the enterprise. During this module, focus is on both enterprise architecture, publishing and device management. Specific topics include Mobile Enterprise Concepts, building mobile middleware with SQL Server 2012 &#43; IIS, securely publishing enterprise data out to the Internet, consuming and working with data on Windows Phone, Phone Devices in the Enterprise, managed and unmanaged devices, Device Enrollment, and distributing the enrollment key.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture#time=09m00s">[09:00]</a> - Building mobile middleware </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture#time=20m33s">[20:33]</a> - Scaling out </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture#time=34m57s">[34:57]</a> - Getting corpnet data out to devices </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture#time=40m08s">[40:08]</a> - Working with offline data </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture#time=51m13s">[51:13]</a> - Complete logical architecture </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: Enterprise App Architecture </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:0ba9a713b6934f1b88a8a11b013ea1b7">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture</comments>
      <itunes:summary>Rob Tiffany illustrates a variety of ways Windows Phone 8 can be effectively leveraged in the enterprise. During this module, focus is on both enterprise architecture, publishing and device management. Specific topics include Mobile Enterprise Concepts, building mobile middleware with SQL Server 2012 &amp;#43; IIS, securely publishing enterprise data out to the Internet, consuming and working with data on Windows Phone, Phone Devices in the Enterprise, managed and unmanaged devices, Device Enrollment, and distributing the enrollment key. [09:00] - Building mobile middleware [20:33] - Scaling out [34:57] - Getting corpnet data out to devices [40:08] - Working with offline data [51:13] - Complete logical architecture Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>3566</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture</link>
      <pubDate>Tue, 04 Dec 2012 19:29:08 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18.mp3" expression="full" duration="3566" fileSize="57060070" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18.mp4" expression="full" duration="3566" fileSize="346421793" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18.webm" expression="full" duration="3566" fileSize="107659365" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18.wma" expression="full" duration="3566" fileSize="28840427" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18.wmv" expression="full" duration="3566" fileSize="163338923" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18_high.mp4" expression="full" duration="3566" fileSize="761427024" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18_mid.mp4" expression="full" duration="3566" fileSize="531633816" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18_Source.wmv" expression="full" duration="3566" fileSize="454421375" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18.ism/manifest" expression="full" duration="3566" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/d354/4d61461a-c1d5-43d8-839a-9aa1e6f0d354/WP8JumpStart18.wmv" length="163338923" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>3</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture/RSS</wfw:commentRss>
      <category>Enterprise Architecture</category>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (17) The Windows Phone Store</title>
      <description><![CDATA[<p>This key module provides important content for preparing your app successfully for the Windows Phone Store. Performance Analysis, creating an Application (configuring the application, the Store Testing Tool), Distributing an Application, the Windows Phone Store, Advertising Supported Applications, and Maximizing Uptake will be covered.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store#time=02m14s">[02:14]</a> - Performance analysis </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store#time=09m46s">[09:46]</a> - Simulation dashboard </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store#time=17m31s">[17:31]</a> - App memeory usage </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store#time=31m34s">[31:34]</a> - Distributing apps </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store#time=40m52s">[40:52]</a> - Store submission </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: The Windows Phone Store </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:c8d9f014e0ea452f8bc8a11b013e5dcb">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store</comments>
      <itunes:summary>This key module provides important content for preparing your app successfully for the Windows Phone Store. Performance Analysis, creating an Application (configuring the application, the Store Testing Tool), Distributing an Application, the Windows Phone Store, Advertising Supported Applications, and Maximizing Uptake will be covered. [02:14] - Performance analysis [09:46] - Simulation dashboard [17:31] - App memeory usage [31:34] - Distributing apps [40:52] - Store submission Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>3090</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store</link>
      <pubDate>Tue, 04 Dec 2012 19:28:55 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17.mp3" expression="full" duration="3090" fileSize="49449864" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17.mp4" expression="full" duration="3090" fileSize="306279782" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17.webm" expression="full" duration="3090" fileSize="91432244" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17.wma" expression="full" duration="3090" fileSize="24995307" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17.wmv" expression="full" duration="3090" fileSize="124384505" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17_high.mp4" expression="full" duration="3090" fileSize="663188259" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17_mid.mp4" expression="full" duration="3090" fileSize="463877686" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17_Source.wmv" expression="full" duration="3090" fileSize="255983901" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17.ism/manifest" expression="full" duration="3090" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/591e/0bb77a9f-b8bb-4af4-9ef9-df4cdf71591e/WP8JumpStart17.wmv" length="124384505" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>1</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store/RSS</wfw:commentRss>
      <category>Windows Phone Marketplace</category>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (16) In-App Purchasing</title>
      <description><![CDATA[<p>During this module, developers learn how to support In-App Purchases. Rob and Andy cover topics such as adding products to your application (durable and consumable items), the purchase lifecycle, and the Application Programmer Interface (finding products, purchasing products, using product receipts).</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing#time=01m17s">[01:17]</a> - In-App purchases </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing#time=13m31s">[13:31]</a> - Testing in-app purchases </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: In-App Purchasing </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:edd9ac243c014c5abed1a11b013de3c4">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing</comments>
      <itunes:summary>During this module, developers learn how to support In-App Purchases. Rob and Andy cover topics such as adding products to your application (durable and consumable items), the purchase lifecycle, and the Application Programmer Interface (finding products, purchasing products, using product receipts). [01:17] - In-App purchases [13:31] - Testing in-app purchases Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>1395</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing</link>
      <pubDate>Tue, 04 Dec 2012 19:28:45 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16.mp3" expression="full" duration="1395" fileSize="22334741" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16.mp4" expression="full" duration="1395" fileSize="145440862" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16.webm" expression="full" duration="1395" fileSize="42369622" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16.wma" expression="full" duration="1395" fileSize="11294063" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16.wmv" expression="full" duration="1395" fileSize="58817615" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16_high.mp4" expression="full" duration="1395" fileSize="328270056" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16_mid.mp4" expression="full" duration="1395" fileSize="223456660" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16_Source.wmv" expression="full" duration="1395" fileSize="124598871" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16.ism/manifest" expression="full" duration="1395" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/82d0/fa7d68bf-1fa5-4503-9d25-ef34f00182d0/WP8JumpStart16.wmv" length="58817615" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>1</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing/RSS</wfw:commentRss>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (15) Wallet Support</title>
      <description><![CDATA[<p>Andy Wigley and Rob Tiffany provide and important overview for Wallet Support during this session. After the Wallet Overview (applications and wallet storage, wallet capabilities), they cover creating and using a membership card, the Wallet Background Agent, and creating and using a payment instrument card.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support#time=01m31s">[01:31]</a> - Wallet overview </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support#time=09m24s">[09:24]</a> - Creating and using a membership card </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support#time=15m41s">[15:41]</a> - Wallet background agent </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support#time=26m51s">[26:51]</a> - Creating and using a payment card </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: Wallet Support </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:6db1ee8346a348e882fda11b013d9ffb">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support</comments>
      <itunes:summary>Andy Wigley and Rob Tiffany provide and important overview for Wallet Support during this session. After the Wallet Overview (applications and wallet storage, wallet capabilities), they cover creating and using a membership card, the Wallet Background Agent, and creating and using a payment instrument card. [01:31] - Wallet overview [09:24] - Creating and using a membership card [15:41] - Wallet background agent [26:51] - Creating and using a payment card Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>1849</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support</link>
      <pubDate>Tue, 04 Dec 2012 19:28:33 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15.mp3" expression="full" duration="1849" fileSize="29597183" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15.mp4" expression="full" duration="1849" fileSize="177029282" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15.webm" expression="full" duration="1849" fileSize="59991939" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15.wma" expression="full" duration="1849" fileSize="14961947" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15.wmv" expression="full" duration="1849" fileSize="84260171" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15_high.mp4" expression="full" duration="1849" fileSize="387453474" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15_mid.mp4" expression="full" duration="1849" fileSize="270944446" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15_Source.wmv" expression="full" duration="1849" fileSize="257483345" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15.ism/manifest" expression="full" duration="1849" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/3fbf/653f797c-43f4-4aba-a3eb-86181c333fbf/WP8JumpStart15.wmv" length="84260171" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support/RSS</wfw:commentRss>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (14) Maps and Location in Windows Phone 8</title>
      <description><![CDATA[<p>During this module, developers learn how to leverage the new Location API and new Maps Controls with Windows Phone 8. Primary topics include the Windows Phone Runtime Location API, acquiring the phone's current location, continuously tracking the phone's location, running location-tracking apps in the background, the New Map Control, specifying Map center and zoom, animating Map Display using Map Views.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8#time=01m55s">[01:55]</a> - Location API </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8#time=15m29s">[15:29]</a> - Location tracking in the background </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8#time=21m59s">[21:59]</a> - Maps </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8#time=28m36s">[28:36]</a> - Pushpins </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: Maps and Location in Windows Phone 8 </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:11fbcdeee8ad4a279e8aa11b013d61fa">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8</comments>
      <itunes:summary>During this module, developers learn how to leverage the new Location API and new Maps Controls with Windows Phone 8. Primary topics include the Windows Phone Runtime Location API, acquiring the phone&#39;s current location, continuously tracking the phone&#39;s location, running location-tracking apps in the background, the New Map Control, specifying Map center and zoom, animating Map Display using Map Views. [01:55] - Location API [15:29] - Location tracking in the background [21:59] - Maps [28:36] - Pushpins Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>2002</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8</link>
      <pubDate>Tue, 04 Dec 2012 19:28:16 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14.mp3" expression="full" duration="2002" fileSize="32038137" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14.mp4" expression="full" duration="2002" fileSize="196093302" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14.webm" expression="full" duration="2002" fileSize="61455647" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14.wma" expression="full" duration="2002" fileSize="16196591" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14.wmv" expression="full" duration="2002" fileSize="85002113" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14_high.mp4" expression="full" duration="2002" fileSize="426389689" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14_mid.mp4" expression="full" duration="2002" fileSize="298533146" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14_Source.wmv" expression="full" duration="2002" fileSize="188524452" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14.ism/manifest" expression="full" duration="2002" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/1bf8/519a8dcb-1131-41be-b011-a48a35d71bf8/WP8JumpStart14.wmv" length="85002113" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8/RSS</wfw:commentRss>
      <category>Maps</category>
      <category>Sensor and Location Platform</category>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (13) Speech Input in Windows Phone 8</title>
      <description><![CDATA[<p>In this session, Andy and Rob illustrate the vast speech capabilities for developers on Windows Phone 8, including speech synthesis, controlling apps using speech (voice command definition files, building conversations, selecting application entry points), simple speech input/speech recognition, and speech input and grammars, such as using Grammar Lists.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8#time=03m31s">[03:31]</a> - Speech synthesis </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8#time=10m05s">[10:05]</a> - Speech synthesis markup language </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8#time=17m26s">[17:26]</a> - Handling voice commands </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8#time=23m20s">[23:20]</a> - Simple speech input </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: Speech Input in Windows Phone 8 </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:cade7cfe5baf43dc8882a11b0137ef40">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8</comments>
      <itunes:summary>In this session, Andy and Rob illustrate the vast speech capabilities for developers on Windows Phone 8, including speech synthesis, controlling apps using speech (voice command definition files, building conversations, selecting application entry points), simple speech input/speech recognition, and speech input and grammars, such as using Grammar Lists. [03:31] - Speech synthesis [10:05] - Speech synthesis markup language [17:26] - Handling voice commands [23:20] - Simple speech input Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>1854</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8</link>
      <pubDate>Tue, 04 Dec 2012 19:28:02 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13.mp3" expression="full" duration="1854" fileSize="29678301" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13.mp4" expression="full" duration="1854" fileSize="182826588" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13.webm" expression="full" duration="1854" fileSize="59199743" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13.wma" expression="full" duration="1854" fileSize="15004003" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13.wmv" expression="full" duration="1854" fileSize="83566985" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13_high.mp4" expression="full" duration="1854" fileSize="401168462" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13_mid.mp4" expression="full" duration="1854" fileSize="280453941" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13_Source.wmv" expression="full" duration="1854" fileSize="254307314" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13.ism/manifest" expression="full" duration="1854" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/5d6d/18e2459c-1a5b-445a-b569-192981e85d6d/WP8JumpStart13.wmv" length="83566985" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>5</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8/RSS</wfw:commentRss>
      <category>Speech</category>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (12) Proximity Sensors and Bluetooth in Windows Phone 8</title>
      <description><![CDATA[<p>Andy and Rob cover local communication with Windows Phone 8 in this module. After a Bluetooth Overview, using Bluetooth from an application, Near Field Communications (NFC), bump-to-connect, using NFC from an application and proximity API functionality are covered.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8#time=01m58s">[01:58]</a> - Bluetooth overview </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8#time=11m38s">[11:38]</a> - App to app communication </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8#time=20m40s">[20:40]</a> - Near Field Communication </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8#time=34m28s">[34:28]</a> - NFC and Bluetooth demo </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:cfe98ff4a86044b7b13aa11b0137ae7a">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8</comments>
      <itunes:summary>Andy and Rob cover local communication with Windows Phone 8 in this module. After a Bluetooth Overview, using Bluetooth from an application, Near Field Communications (NFC), bump-to-connect, using NFC from an application and proximity API functionality are covered. [01:58] - Bluetooth overview [11:38] - App to app communication [20:40] - Near Field Communication [34:28] - NFC and Bluetooth demo Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>2528</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8</link>
      <pubDate>Tue, 04 Dec 2012 19:27:48 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12.mp3" expression="full" duration="2528" fileSize="40456265" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12.mp4" expression="full" duration="2528" fileSize="246436824" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12.webm" expression="full" duration="2528" fileSize="78662957" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12.wma" expression="full" duration="2528" fileSize="20450255" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12.wmv" expression="full" duration="2528" fileSize="108873413" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12_high.mp4" expression="full" duration="2528" fileSize="541291484" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12_mid.mp4" expression="full" duration="2528" fileSize="377978834" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12_Source.wmv" expression="full" duration="2528" fileSize="274357046" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12.ism/manifest" expression="full" duration="2528" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/7f02/faaf4816-3918-44bd-bda8-39ea996a7f02/WP8JumpStart12.wmv" length="108873413" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8/RSS</wfw:commentRss>
      <category>Bluetooth</category>
      <category>sensors</category>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (11) Network Communication in Windows Phone 8</title>
      <description><![CDATA[<p>During this module, developers learn how to leverage patterns for asynchronous use of networking APIs. Topics include WebClient, HttpWebRequest, Listener Sockets, Web Services and OData V3, Data Compression support, Simulation Dashboard, Data Sense and applications. Storing data in Skydrive. Encryption and Authentication. Accessing services running on localhost.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8#time=02m39s">[02:39]</a> - Networking for Windows Phone </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8#time=14m41s">[14:41]</a> - WebClient </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8#time=18m28s">[18:28]</a> - HttpWebRequest </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8#time=23m57s">[23:57]</a> - Sockets and Web services Odata </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8#time=36m12s">[36:12]</a> - Network information and efficiency </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8#time=44m52s">[44:52]</a> - Data compression </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8#time=51m28s">[51:28]</a> - Data sense </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8#time=56m55s">[56:55]</a> - Storing data in the cloud </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: Network Communication in Windows Phone 8 </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Development" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:c79dc10f3b7c4fa6ae64a11b01374c42">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8</comments>
      <itunes:summary>During this module, developers learn how to leverage patterns for asynchronous use of networking APIs. Topics include WebClient, HttpWebRequest, Listener Sockets, Web Services and OData V3, Data Compression support, Simulation Dashboard, Data Sense and applications. Storing data in Skydrive. Encryption and Authentication. Accessing services running on localhost. [02:39] - Networking for Windows Phone [14:41] - WebClient [18:28] - HttpWebRequest [23:57] - Sockets and Web services Odata [36:12] - Network information and efficiency [44:52] - Data compression [51:28] - Data sense [56:55] - Storing data in the cloud Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>4005</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8</link>
      <pubDate>Tue, 04 Dec 2012 19:27:34 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11.mp3" expression="full" duration="4005" fileSize="64089727" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11.mp4" expression="full" duration="4005" fileSize="387469630" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11.webm" expression="full" duration="4005" fileSize="123219744" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11.wma" expression="full" duration="4005" fileSize="32394159" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11.wmv" expression="full" duration="4005" fileSize="175287587" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11_high.mp4" expression="full" duration="4005" fileSize="848708837" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11_mid.mp4" expression="full" duration="4005" fileSize="592569816" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11_Source.wmv" expression="full" duration="4005" fileSize="426992514" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11.ism/manifest" expression="full" duration="4005" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/86a7/ccb79174-39a1-4370-b09e-2181706386a7/WP8JumpStart11.wmv" length="175287587" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>7</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8/RSS</wfw:commentRss>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (10) App to App Communication in Windows Phone 8</title>
      <description><![CDATA[<p>In this session, Andy and Rob demonstrate app to app communication in Windows Phone 8. Topics such as auto-launching with File and Protocol Associations (URI), launching apps to handle particular File Types, and <br>launching one app from another are covered.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8#time=06m38s">[06:38]</a> - Auto-launching with File and Protocol associations </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8#time=12m40s">[12:40]</a> - File associations </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8#time=27m19s">[27:19]</a> - Protocol associations </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: App to App Communication in Windows Phone 8 </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:b12ae47c21ca4a6384b1a11b0136bfed">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8</comments>
      <itunes:summary>In this session, Andy and Rob demonstrate app to app communication in Windows Phone 8. Topics such as auto-launching with File and Protocol Associations (URI), launching apps to handle particular File Types, and launching one app from another are covered. [06:38] - Auto-launching with File and Protocol associations [12:40] - File associations [27:19] - Protocol associations Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>2031</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8</link>
      <pubDate>Tue, 04 Dec 2012 19:27:16 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10.mp3" expression="full" duration="2031" fileSize="32501214" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10.mp4" expression="full" duration="2031" fileSize="203245027" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10.webm" expression="full" duration="2031" fileSize="64055985" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10.wma" expression="full" duration="2031" fileSize="16430903" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10.wmv" expression="full" duration="2031" fileSize="90034079" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10_high.mp4" expression="full" duration="2031" fileSize="445925258" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10_mid.mp4" expression="full" duration="2031" fileSize="311039351" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10_Source.wmv" expression="full" duration="2031" fileSize="287094252" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10.ism/manifest" expression="full" duration="2031" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/ccac/a7633d0f-b8dc-4034-8786-b85a4287ccac/WP8JumpStart10.wmv" length="90034079" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>1</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8/RSS</wfw:commentRss>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (09) Using Phone Resources in Windows Phone 8</title>
      <description><![CDATA[<p>Andy and Rob demonstrate how to leverage a variety of Windows Phone 8 resources in tihs module. Working with Launchers and Choosers, using&nbsp; Contacts and Calendars (SaveAppointment Task, Custom Contacts API), taking still images and manipulating video streams (Camera APIs,&nbsp; lenses), working with the Windows Phone Microphone and Sensors (such as the Motion sensor) and working with Video Content are all covered in this module.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8#time=04m00s">[04:00]</a> - Using the Contacts and Calenders in Windows Phone </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8#time=25m18s">[25:18]</a> - Launchers and Choosers </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8#time=29m23s">[29:23]</a> - Alarms and reminders </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8#time=37m48s">[37:48]</a> - The Windows Phone camera </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8#time=51m54s">[51:54]</a> - The Windows Phone sensors </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8#time=54m37s">[54:37]</a> - Video content </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: Using Phone Resources in Windows Phone 8 </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:2f7fe2ceda5844ed984ba11b013686c2">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8</comments>
      <itunes:summary>Andy and Rob demonstrate how to leverage a variety of Windows Phone 8 resources in tihs module. Working with Launchers and Choosers, using&amp;nbsp; Contacts and Calendars (SaveAppointment Task, Custom Contacts API), taking still images and manipulating video streams (Camera APIs,&amp;nbsp; lenses), working with the Windows Phone Microphone and Sensors (such as the Motion sensor) and working with Video Content are all covered in this module. [04:00] - Using the Contacts and Calenders in Windows Phone [25:18] - Launchers and Choosers [29:23] - Alarms and reminders [37:48] - The Windows Phone camera [51:54] - The Windows Phone sensors [54:37] - Video content Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>3482</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8</link>
      <pubDate>Tue, 04 Dec 2012 19:27:08 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09.mp3" expression="full" duration="3482" fileSize="55726364" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09.mp4" expression="full" duration="3482" fileSize="343388626" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09.webm" expression="full" duration="3482" fileSize="105030869" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09.wma" expression="full" duration="3482" fileSize="28167531" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09.wmv" expression="full" duration="3482" fileSize="144663425" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09_high.mp4" expression="full" duration="3482" fileSize="752000433" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09_mid.mp4" expression="full" duration="3482" fileSize="524787608" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09_Source.wmv" expression="full" duration="3482" fileSize="338952206" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09.ism/manifest" expression="full" duration="3482" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/0ea3/ebbbb71a-2583-47c0-a4e4-58fe20280ea3/WP8JumpStart09.wmv" length="144663425" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>7</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8/RSS</wfw:commentRss>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (08) Push Notifications</title>
      <description><![CDATA[<p>During this session, Push Notifications and server-initiated communications are covered. Andy and Rob discuss Push Notifications Infrastructure and demonstrate three kinds of Notifications: Raw, Toast and Tile, then cover Push Response Headers.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications#time=02m08s">[02:08]</a> - Push notifications </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications#time=06m26s">[06:26]</a> - Push notification data flow </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications#time=11m19s">[11:19]</a> - Toast and tile message content </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications#time=14m59s">[14:59]</a> - Demo push notifications </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: Push Notifications </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:845a065251aa411a9ce8a11b0136503f">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications</comments>
      <itunes:summary>During this session, Push Notifications and server-initiated communications are covered. Andy and Rob discuss Push Notifications Infrastructure and demonstrate three kinds of Notifications: Raw, Toast and Tile, then cover Push Response Headers. [02:08] - Push notifications [06:26] - Push notification data flow [11:19] - Toast and tile message content [14:59] - Demo push notifications Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>1726</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications</link>
      <pubDate>Tue, 04 Dec 2012 19:26:53 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08.mp3" expression="full" duration="1726" fileSize="27619400" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08.mp4" expression="full" duration="1726" fileSize="167958733" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08.webm" expression="full" duration="1726" fileSize="52970690" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08.wma" expression="full" duration="1726" fileSize="13964619" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08.wmv" expression="full" duration="1726" fileSize="73472753" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08_high.mp4" expression="full" duration="1726" fileSize="368524951" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08_mid.mp4" expression="full" duration="1726" fileSize="257345409" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08_Source.wmv" expression="full" duration="1726" fileSize="220659340" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08.ism/manifest" expression="full" duration="1726" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/4e8f/ebc5d37b-d490-4ca4-ac17-0323325c4e8f/WP8JumpStart08.wmv" length="73472753" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications/RSS</wfw:commentRss>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (07) Tiles and Lock Screen Notifications</title>
      <description><![CDATA[<p>In this module, developers learn about Tiles in Windows Phone 8. Topics include Local Tiles API, Updating Tiles from ShellTileSchedule, Updating Tiles from Background Agents, Lock screen notifications for Windows Phone, and Lock screen background for Windows Phone.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications#time=03m12s">[03:12]</a> - Tiles in Windows Phone 8 </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications#time=18m55s">[18:55]</a> - Local tiles API </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications#time=27m59s">[27:59]</a> - Lock screen notifications </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications#time=34m13s">[34:13]</a> - Lock screen background </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: Tiles and Lock Screen Notifications </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:d05a99d5494c4376a642a11b0135f060">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications</comments>
      <itunes:summary>In this module, developers learn about Tiles in Windows Phone 8. Topics include Local Tiles API, Updating Tiles from ShellTileSchedule, Updating Tiles from Background Agents, Lock screen notifications for Windows Phone, and Lock screen background for Windows Phone. [03:12] - Tiles in Windows Phone 8 [18:55] - Local tiles API [27:59] - Lock screen notifications [34:13] - Lock screen background Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>2222</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications</link>
      <pubDate>Tue, 04 Dec 2012 19:26:38 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07.mp3" expression="full" duration="2222" fileSize="35556479" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07.mp4" expression="full" duration="2222" fileSize="217140345" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07.webm" expression="full" duration="2222" fileSize="68795643" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07.wma" expression="full" duration="2222" fileSize="17974959" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07.wmv" expression="full" duration="2222" fileSize="93065057" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07_high.mp4" expression="full" duration="2222" fileSize="475561435" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07_mid.mp4" expression="full" duration="2222" fileSize="332929897" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07_Source.wmv" expression="full" duration="2222" fileSize="230546073" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07.ism/manifest" expression="full" duration="2222" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/9abc/3e7e483a-2bd4-4d77-97ea-93b4593f9abc/WP8JumpStart07.wmv" length="93065057" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications/RSS</wfw:commentRss>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (06) Background Agents</title>
      <description><![CDATA[<p>Andy Wigely and Rob Tiffany cover concepts during this module that will help ensure your apps help ensure the best possible performance and battery life for the&nbsp; phone user. Topics such as Windows Phone task management, multi-tasking with background agents, updating tiles from a background agent, creating tasks in Visual Studio, File transfer tasks, and Background notifications will be covered.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents#time=01m34s">[01:34]</a> - Task management </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents#time=07m54s">[07:54]</a> - Dual-purpose agents </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents#time=14m54s">[14:54]</a> - Background and location tracking </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents#time=22m34s">[22:34]</a> - Background agent tips </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: Background Agents </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:15e8fc57db2b404ead4fa11b0135b1b8">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents</comments>
      <itunes:summary>Andy Wigely and Rob Tiffany cover concepts during this module that will help ensure your apps help ensure the best possible performance and battery life for the&amp;nbsp; phone user. Topics such as Windows Phone task management, multi-tasking with background agents, updating tiles from a background agent, creating tasks in Visual Studio, File transfer tasks, and Background notifications will be covered. [01:34] - Task management [07:54] - Dual-purpose agents [14:54] - Background and location tracking [22:34] - Background agent tips Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>1504</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents</link>
      <pubDate>Tue, 04 Dec 2012 19:26:23 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06.mp3" expression="full" duration="1504" fileSize="24068835" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06.mp4" expression="full" duration="1504" fileSize="146486243" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06.webm" expression="full" duration="1504" fileSize="45158913" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06.wma" expression="full" duration="1504" fileSize="12168227" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06.wmv" expression="full" duration="1504" fileSize="64166783" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06_high.mp4" expression="full" duration="1504" fileSize="321942038" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06_mid.mp4" expression="full" duration="1504" fileSize="224509264" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06_Source.wmv" expression="full" duration="1504" fileSize="187597589" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06.ism/manifest" expression="full" duration="1504" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/ecbc/cfcb0ad7-fbdd-47b0-aabf-4da5e3e0ecbc/WP8JumpStart06.wmv" length="64166783" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents/RSS</wfw:commentRss>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (05) Windows Phone 8 Application Lifecycle</title>
      <description><![CDATA[<p>During this session, Andy Wigley and Rob Tiffany focus on key concepts like the Windows Phone 8 program lifecycle (Launching and Closing, Deactivating and Activating, Dormant and Tombstoned applications and the Simulation Dashboard). Next, they discuss Idle Detection on Windows Phone and Detecting Obscured events, Fast Application Resume, Lifecycle design, and Page Navigation and the Back Stack.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle#time=02m05s">[02:05]</a> - Windows Phone 8 program lifecycle </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle#time=07m35s">[07:35]</a> - App deactivation and reactivation </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle#time=14m30s">[14:30]</a> - Fast application switching </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle#time=24m30s">[24:30]</a> - States and tombstones </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle#time=38m57s">[38:57]</a> - Fast application resume </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: Windows Phone 8 Application Lifecycle </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:c07e8080c17d4747a4b2a11b01352b9e">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle</comments>
      <itunes:summary>During this session, Andy Wigley and Rob Tiffany focus on key concepts like the Windows Phone 8 program lifecycle (Launching and Closing, Deactivating and Activating, Dormant and Tombstoned applications and the Simulation Dashboard). Next, they discuss Idle Detection on Windows Phone and Detecting Obscured events, Fast Application Resume, Lifecycle design, and Page Navigation and the Back Stack. [02:05] - Windows Phone 8 program lifecycle [07:35] - App deactivation and reactivation [14:30] - Fast application switching [24:30] - States and tombstones [38:57] - Fast application resume Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>3063</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle</link>
      <pubDate>Tue, 04 Dec 2012 19:26:09 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05.mp3" expression="full" duration="3063" fileSize="49016441" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05.mp4" expression="full" duration="3063" fileSize="297281121" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05.webm" expression="full" duration="3063" fileSize="94765830" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05.wma" expression="full" duration="3063" fileSize="24776015" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05.wmv" expression="full" duration="3063" fileSize="130605359" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05_high.mp4" expression="full" duration="3063" fileSize="654170274" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05_mid.mp4" expression="full" duration="3063" fileSize="456458954" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05_Source.wmv" expression="full" duration="3063" fileSize="332278225" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05.ism/manifest" expression="full" duration="3063" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/0219/35ecd599-64bd-421e-93bf-034ea26f0219/WP8JumpStart05.wmv" length="130605359" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>3</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle/RSS</wfw:commentRss>
      <category>Application-Lifecycle-Management</category>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (04) Files and Storage on Windows Phone 8</title>
      <description><![CDATA[<p>This module covers new storage concepts for Windows Phone 8. The concepts covered in this module include accessing the Installation folder or the Local folder using the Windows Phone Runtime Windows.Storage APIs. Additionally, Andy and Rob focus on background file transfers, Special Folders (Shared/Media, Shared/ShellContent, Shared/Transfers), and exploring the local folder with ISET Using Removable SD cards.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8#time=03m32s">[03:32]</a> - Persistent storage in WP8 </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8#time=10m13s">[10:13]</a> - Using Windows Phone runtime storage </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8#time=26m02s">[26:02]</a> - Special folders </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8#time=31m34s">[31:34]</a> - Exploring the local folder </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: <a title="Building Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps" target="_self">Building Windows Phone 8 Apps</a> </li><li>Mod 04: Files and Storage on Windows Phone 8 </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:ce2dd88d9fd34340abd7a11b0134ee59">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8</comments>
      <itunes:summary>This module covers new storage concepts for Windows Phone 8. The concepts covered in this module include accessing the Installation folder or the Local folder using the Windows Phone Runtime Windows.Storage APIs. Additionally, Andy and Rob focus on background file transfers, Special Folders (Shared/Media, Shared/ShellContent, Shared/Transfers), and exploring the local folder with ISET Using Removable SD cards. [03:32] - Persistent storage in WP8 [10:13] - Using Windows Phone runtime storage [26:02] - Special folders [31:34] - Exploring the local folder Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>2256</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8</link>
      <pubDate>Tue, 04 Dec 2012 19:25:49 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04.mp3" expression="full" duration="2256" fileSize="36099410" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04.mp4" expression="full" duration="2256" fileSize="222550114" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04.webm" expression="full" duration="2256" fileSize="68347396" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04.wma" expression="full" duration="2256" fileSize="18248323" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04.wmv" expression="full" duration="2256" fileSize="95999471" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04_high.mp4" expression="full" duration="2256" fileSize="488922033" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04_mid.mp4" expression="full" duration="2256" fileSize="341521747" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04_Source.wmv" expression="full" duration="2256" fileSize="254516181" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04.ism/manifest" expression="full" duration="2256" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/7e13/ce6ea97c-e233-4e7c-a74d-ee1c81e37e13/WP8JumpStart04.wmv" length="95999471" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>5</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8/RSS</wfw:commentRss>
      <category>Storage</category>
      <category>Windows Phone 8</category>
    </item>
  <item>
      <title>Building Apps for Windows Phone 8 Jump Start: (03) Building Windows Phone 8 Apps</title>
      <description><![CDATA[<p>This module provides developers with a comprehensive understanding of the key components required to build a Windows Phone 8 App, including Page Navigation, the Application Bar, building UI for multiple screen resolutions and portrait/landscape orientations, implementing page transition animations with the Windows Phone Toolkit and Localization.</p><ul><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps#time=02m35s">[02:35]</a> - Page navigation </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps#time=17m52s">[17:52]</a> - Application bar </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps#time=26m45s">[26:45]</a> - Handling screen orientation changes </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps#time=34m05s">[34:05]</a> - Handling different screen resolutions </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps#time=40m58s">[40:58]</a> - Localization </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps#time=47m06s">[47:06]</a> - Windows Phone Toolkit </li><li><a href="http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps#time=51m31s">[51:31]</a> - Page transitions </li></ul><p>Full course outline:</p><ul><li>Mod 01a: <a title="Introducing Windows Phone 8 Development Part 1" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01a-Introducing-Windows-Phone-8-Development-Part-1" target="_self">Introducing Windows Phone 8 Development Part 1</a> </li><li>Mod 01b: <a title="Introducing Windows Phone 8 Development Part 2" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-01b-Introducing-Windows-Phone-8-Development-Part-2" target="_self">Introducing Windows Phone 8 Development Part 2</a> </li><li>Mod 02: <a title="Designing Windows Phone 8 Apps" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-02-Designing-Windows-Phone-8-Apps" target="_self">Designing Windows Phone 8 Apps</a> </li><li>Mod 03: Building Windows Phone 8 Apps </li><li>Mod 04: <a title="Files and Storage on Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-04-Files-and-Storage-on-Windows-Phone-8" target="_self">Files and Storage on Windows Phone 8</a> </li><li>Mod 05: <a title="Windows Phone 8 Application Lifecycle" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-05-Windows-Phone-8-Application-Lifecycle" target="_self">Windows Phone 8 Application Lifecycle</a> </li><li>Mod 06: <a title="Background Agents" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-06-Background-Agents" target="_self">Background Agents</a> </li><li>Mod 07: <a title="Tiles and Lock Screen Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-07-Tiles-and-Lock-Screen-Notifications" target="_self">Tiles and Lock Screen Notifications</a> </li><li>Mod 08: <a title="Push Notifications" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-08-Push-Notifications" target="_self">Push Notifications</a> </li><li>Mod 09: <a title="Using Phone Resources in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-09-Using-Phone-Resources-in-Windows-Phone-8" target="_self">Using Phone Resources in Windows Phone 8</a> </li><li>Mod 10: <a title="App to App Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-10-App-to-App-Communication-in-Windows-Phone-8" target="_self">App to App Communication in Windows Phone 8</a> </li><li>Mod 11: <a title="Network Communication in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-11-Network-Communication-in-Windows-Phone-8" target="_self">Network Communication in Windows Phone 8</a> </li><li>Mod 12: <a title="Proximity Sensors and Bluetooth in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-12-Proximity-Sensors-and-Bluetooth-in-Windows-Phone-8" target="_self">Proximity Sensors and Bluetooth in Windows Phone 8</a> </li><li>Mod 13: <a title="Speech Input in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-13-Speech-Input-in-Windows-Phone-8" target="_self">Speech Input in Windows Phone 8</a> </li><li>Mod 14: <a title="Maps and Location in Windows Phone 8" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-in-Windows-Phone-8" target="_self">Maps and Location in Windows Phone 8</a> </li><li>Mod 15: <a title="Wallet Support" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-15-Wallet-Support" target="_self">Wallet Support</a> </li><li>Mod 16: <a title="In-App Purchasing" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-16-In-App-Purchasing" target="_self">In-App Purchasing</a> </li><li>Mod 17: <a title="The Windows Phone Store" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-17-The-Windows-Phone-Store" target="_self">The Windows Phone Store</a> </li><li>Mod 18: <a title="Enterprise App Architecture" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-18-Enterprise-App-Architecture" target="_self">Enterprise App Architecture</a> </li><li>Mod 19: <a title="Windows Phone 8 and Windows 8 Cross Platform Development" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-19-Windows-Phone-8-and-Windows-8-Cross-Platform-Develop" target="_self">Windows Phone 8 and Windows 8 Cross Platform Development</a> </li><li>Mod 20: <a title="Mobile Web" href="http://channel9.msdn.com/posts/Building-Apps-for-Windows-Phone-8-Jump-Start-20-Mobile-Web" target="_self">Mobile Web</a> </li></ul> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Niners/ptaavs/Posts/RSS&WT.dl=0&WT.entryid=Entry:RSSView:4e555539d1c64a95ad7ea11b01349aab">]]></description>
      <comments>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps</comments>
      <itunes:summary>This module provides developers with a comprehensive understanding of the key components required to build a Windows Phone 8 App, including Page Navigation, the Application Bar, building UI for multiple screen resolutions and portrait/landscape orientations, implementing page transition animations with the Windows Phone Toolkit and Localization. [02:35] - Page navigation [17:52] - Application bar [26:45] - Handling screen orientation changes [34:05] - Handling different screen resolutions [40:58] - Localization [47:06] - Windows Phone Toolkit [51:31] - Page transitions Full course outline: Mod 01a: Introducing Windows Phone 8 Development Part 1 Mod 01b: Introducing Windows Phone 8 Development Part 2 Mod 02: Designing Windows Phone 8 Apps Mod 03: Building Windows Phone 8 Apps Mod 04: Files and Storage on Windows Phone 8 Mod 05: Windows Phone 8 Application Lifecycle Mod 06: Background Agents Mod 07: Tiles and Lock Screen Notifications Mod 08: Push Notifications Mod 09: Using Phone Resources in Windows Phone 8 Mod 10: App to App Communication in Windows Phone 8 Mod 11: Network Communication in Windows Phone 8 Mod 12: Proximity Sensors and Bluetooth in Windows Phone 8 Mod 13: Speech Input in Windows Phone 8 Mod 14: Maps and Location in Windows Phone 8 Mod 15: Wallet Support Mod 16: In-App Purchasing Mod 17: The Windows Phone Store Mod 18: Enterprise App Architecture Mod 19: Windows Phone 8 and Windows 8 Cross Platform Development Mod 20: Mobile Web </itunes:summary>
      <itunes:duration>3349</itunes:duration>
      <link>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps</link>
      <pubDate>Tue, 04 Dec 2012 19:25:33 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps</guid>
      <media:thumbnail url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03_100.jpg" height="56" width="100"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03_220.jpg" height="123" width="220"></media:thumbnail>
      <media:thumbnail url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03_512.jpg" height="288" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03.mp3" expression="full" duration="3349" fileSize="53589316" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03.mp4" expression="full" duration="3349" fileSize="324984995" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03.webm" expression="full" duration="3349" fileSize="99366329" type="video/webm" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03.wma" expression="full" duration="3349" fileSize="27089095" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03.wmv" expression="full" duration="3349" fileSize="137282267" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03_high.mp4" expression="full" duration="3349" fileSize="713833957" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03_mid.mp4" expression="full" duration="3349" fileSize="498285739" type="video/mp4" medium="video"></media:content>
        <media:content url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03_Source.wmv" expression="full" duration="3349" fileSize="335095935" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03.ism/manifest" expression="full" duration="3349" fileSize="8462" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://media.ch9.ms/ch9/85fc/8244e17b-6841-47b9-b5b8-baeeeb2285fc/WP8JumpStart03.wmv" length="137282267" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JeffKoch, Larry Lieberman</dc:creator>
      <itunes:author>JeffKoch, Larry Lieberman</itunes:author>
      <slash:comments>8</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Series/Building-Apps-for-Windows-Phone-8-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-03-Building-Windows-Phone-8-Apps/RSS</wfw:commentRss>
      <category>Windows Phone 8</category>
    </item>    
</channel>
</rss>