Top Banner
45

The Windows Store and Monetizing your App

Nov 28, 2014

Download

Documents

Parts copyright by Microsoft.
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: The Windows Store and Monetizing your App
Page 2: The Windows Store and Monetizing your App
Page 3: The Windows Store and Monetizing your App
Page 4: The Windows Store and Monetizing your App

demo

Page 5: The Windows Store and Monetizing your App
Page 6: The Windows Store and Monetizing your App
Page 7: The Windows Store and Monetizing your App
Page 8: The Windows Store and Monetizing your App
Page 9: The Windows Store and Monetizing your App
Page 10: The Windows Store and Monetizing your App
Page 11: The Windows Store and Monetizing your App
Page 12: The Windows Store and Monetizing your App
Page 13: The Windows Store and Monetizing your App
Page 14: The Windows Store and Monetizing your App
Page 15: The Windows Store and Monetizing your App
Page 17: The Windows Store and Monetizing your App
Page 18: The Windows Store and Monetizing your App
Page 19: The Windows Store and Monetizing your App

private async void ConvertTrial()

{

var licenseInformation = CurrentApp.LicenseInformation;

licenseInformation.LicenseChanged += licenseInformation_LicenseChanged;

if (licenseInformation.IsTrial)

await CurrentApp.RequestAppPurchaseAsync();

}

void licenseInformation_LicenseChanged()

{

if (CurrentApp.LicenseInformation.IsActive)

{

//Enable features..

}

}

Page 20: The Windows Store and Monetizing your App

var licenseInformation = CurrentApp.LicenseInformation;

var productLicense = licenseInformation.ProductLicenses["product1"];

if (!productLicense.IsActive && licenseInformation.IsActive )

{

try

{

await CurrentAppSimulator.RequestProductPurchaseAsync("product1“, false);

// No exception: enable product1

}

catch (Exception)

{

//product 1 was not purchased

}

}

Page 21: The Windows Store and Monetizing your App
Page 22: The Windows Store and Monetizing your App

demo

Page 23: The Windows Store and Monetizing your App
Page 24: The Windows Store and Monetizing your App
Page 25: The Windows Store and Monetizing your App
Page 26: The Windows Store and Monetizing your App

http://fortumo.com/windows8

Page 27: The Windows Store and Monetizing your App
Page 28: The Windows Store and Monetizing your App

www.windowsadvertising.com

321

Page 29: The Windows Store and Monetizing your App

Something is missing

Page 30: The Windows Store and Monetizing your App

And another small problem

Smaato: “Worldwide, the average ad network fill

rate was 10% in Q3 2011”

“AdDuplex +

pubCenter is a

winning recipe”

JC CimetiereDirector

Product Management

Windows Phone

Microsoft

Page 31: The Windows Store and Monetizing your App

Empowering

developers to

help each other

Cross-promote apps with

other developers

Utilize full potential of your

ad space

Page 32: The Windows Store and Monetizing your App
Page 33: The Windows Store and Monetizing your App
Page 34: The Windows Store and Monetizing your App
Page 35: The Windows Store and Monetizing your App

WindowsDeveloperShow.com AppBizDev.com

Page 36: The Windows Store and Monetizing your App
Page 37: The Windows Store and Monetizing your App
Page 38: The Windows Store and Monetizing your App
Page 39: The Windows Store and Monetizing your App
Page 40: The Windows Store and Monetizing your App
Page 41: The Windows Store and Monetizing your App
Page 42: The Windows Store and Monetizing your App

As of March 2012, IDC

Page 43: The Windows Store and Monetizing your App
Page 44: The Windows Store and Monetizing your App
Page 45: The Windows Store and Monetizing your App