Slides and links from Windows 8 Round Table 29th Nov 2012


If you attended the event yesterday in London then firstly, thank you for coming and secondly, you can find the slides we used attached to this post or via this direct link.

The tips I listed in my part of the day can be found at Windows Store Tips.

And finally, my group is very active in helping developers and designers skill up for Windows 8. Check out the resources (including in-person free training) at http://www.windows-store.co.uk/training

Attachment:
Round Table 29th Nov 2012 novideo

Windows Store Tips:Follow the company developer account guidelines


[Windows Store Tips]

When you create a developer account on the Windows 8 store you can either create a company account or an individual account. I have seen several companies get into a “bit of a pickle” with store company accounts.

We now have some detailed guidelines which will help avoid problems later on, including:

  • Create your Microsoft account using an email address that belongs to your company’s domain, but not to a single individual—for example, windowsapps@fabrikam.com.
  • Add a company phone number that does not require an extension, or an additional email distribution list as a proof.
  • Limit access to your company’s Windows Store Dashboard to the smallest number of developers as possible.
  • In general, use trusted PCs as your security proof. All key team members must have access to these trusted PCs.
  • If you need to allow access to the Windows Store Dashboard from a non-trusted PC, limit that access to a maximum of 5 developers. These developers should access the Windows Store Dashboard from machines that share the same geographical and network location.
  • Frequently manage your proofs to keep them current.

Installing an application on Windows RT for testing is simple pimple


There appears to be a small myth that getting a Windows 8 store app on a Windows RT device  during development is complicated. I think this stems from a) some of the (quite complex) blogosphere posts on Windows RT and sideloading for Enterprise and b) the expectation that some form of remote deployment/debugging will be required.

However, if all you want to do is install and run it then it really is very simple.

In Visual Studio, use the Store menu to create a package.

image

image

At which point Any CPU is normally fine – unless you are using a C/C++ component in which case you will want to generate a ARM package.

image

Now navigate to the directory

image

And copy the entire sub folder onto a USB stick. The appxupload is NOT what you want.

image

Place the USB stick into your Windows RT device and open the folder to reveal the contents.

Right click on the .ps1 file and “Run with PowerShell”

image

You will then get a series of prompts – agree to them all :-)

image

image

image

Note: If it is the first ever time you have done this on the device you will also be prompted to get a developer license (free).

And when complete the application will be on your Start screen – far right, unless you previously installed it.

image

101 WinRT Controls and Frameworks


Last updated 24th October 2012.

Ok, not quite 101 but I’m sure we will get there :-) If I have missed something, please share with a comment. Enjoy!

UX Frameworks – commercial

UX Frameworks – open source

Database

SQLite

Also

  • http://winrtdatabase.codeplex.com/ but this has not been updated for Windows8 RTM – and therefore would act as a starting point
  • Also check out Windows Azure Mobile Services for a cloud database geared towards mobile apps.

Windows Azure Mobile Services

Currently in Preview.

Store data, authenticate (Microsoft accounts, Facebook, Twitter, Google) and authorize users, send email/sms and push notifications to devices using Windows Azure Mobile Services

Bing Maps for Windows Store Apps

Microsoft Advertising SDK for Windows 8

  • · Win 8 RTM Compatible Ad SDK download
  • · Win 8 RTM Compatible Ad SDK MSDN Documentation
  • · Microsoft Advertising for Windows 8 Website for blog posts, FAQs, support and more

Analytics for WinRT

Omniture has a WinRT SDK today in beta: https://developer.omniture.com/en_US/content_module/mobile

Video Player for Windows 8

Currently Preview 6 (22/9/2012)

Play Ready SDK for Windows 8

Audio and Video content protection for streaming and progressive download

Windows Store Tips: Run the Windows App Certification Kit frequently and on a low spec computer


[Windows Store Tips]

Run it often

The Windows App Certification Kit test is one of the first things that happens to your application during certification – and if you fail it, your submission fails. The good news is that the WACK is also something you can run locally before you submit. Please do. In fact, why not integrate it into your build process or get into the habit of running it whenever you are making significant changes to the code.

Also run it on a low spec machine

However as well as running it frequently, also run it on a low spec computer (or Virtual Machine) – Atom is a good processor to aim for.

And run it on clean machine where your application has never run

Just in case you are seeing a performance boost from “caching of something”…

Creating a package gives you the option to launch the kit:

image

or just type “windows app cert” into the search charm:

image

And there is a command line to use as well:

appcert.exe reset
appcert.exe test -apptype metrostyle -packagefullname [package full name] -reportoutputpath [report file name]

Resources:

Windows Store Tips: Do not leave creating the store submission to the last day!


[Windows Store Tips]

Several of the teams we have worked with have delayed looking at the store submission process until the very end … and only then realised a) how much time and effort is involved to do it well and b) there are a few areas that require some careful consideration.

There are eight steps you need to complete, some take a minute or two, some take much longer.

image

Areas that require some thought tend to be questions like “What age rating?” and “How do I answer this cryptography question?”. Check them out sooner rather than later!

Areas that require some effort to do well are things like descriptions, screenshots and promotional images. Promotional images are not screenshots! (More on that in a future post)

What often compounds this is the developer doing the submission is likely not the person best placed to fill in some of the fields. Again, do not leave it until the end to find this out.

Read other Windows Store Tips

Windows Store Tips: You need a privacy policy in your store listing AND in your application


[Windows Store Tips]

If your application collects personal information or we think it might collect personal information then you need a privacy policy.

The detail can be found at 4.1.1 Your app must have a privacy statement if it collects personal information and thankfully it is now much more explicit.

The two areas that caught companies out were:

“I’m not collecting personal information, I’m just using the internet. But i failed???”

However, an IP address is personal information and declaring Internet capabilities such as internetClient and internetClientServer in the app manifest makes us think you’re collecting the IP number of the user. You will need a privacy policy

“I have a privacy policy in my listing, yet I failed???”

That is because you need it in the description page for your application and in the applications settings as displayed from the Windows Settings charm.

Resources:

Windows Store Tips: Turn off Internet Client in Visual Studio if you don’t use the Internet


[Windows Store Tips]

When you create a new Windows Store project in Visual Studio 2012 it “helpfully” turns on one Capability in the manifest – “Internet Client”.

image

Which is great … if you use the Internet.

But… having this turned on means your application must have a privacy policy to be approved for the Windows Store else it will fail submission. There are other reasons why you might need a privacy policy – but this one has tripped up many development teams.

If you don’t need it, turn it off.

Read other Windows Store Tips