//
you're reading...
Software development, Uncategorized, Windows Phone

Hey app, stop using my data plan!

Here we are again another Friday and the development train is rolling again on a new project.

So I managed to wrap up my latest app: UEFA EURO 2012, which got submitted through AppHub a couple of nights ago after using too much time playing around with graphics and stuff that I never ended up using. I think next time it will be a better idea to get a designer to do some proper work on it. Any offers? Please drop me an email. There will be another app in the works pretty soon.

So enough waffle. What have I been focussing on this time. Enough of all the control talk of the past couple of weeks. I started thinking firstly on cutting down on the autorefresh the app does, as I’m not entirely satisfied with the idea of push notifications and the they’ll be there when they feel like it attitude. Just to clarify that, before I get stormed for not using push.

It was a simple fix:

if (DateTime.Now < new DateTime(2012, 06, 13))
{
   KickTimer();
}

My other focus was to not use the data connection of the phone until it was needed. As I usually always start an app with dummy data anyway, I had the data in the app ready for testing, which I used to preview the tournament, until it starts. With a simple if, I wouldn’t be calling my livescore service before the Euro 2012 start:

if (DateTime.Now < new DateTime(2012, 06, 08, 18, 00, 00))
{
   GetDummyResults();
}
else
{
   GetLiveResults();
}

So as you can see, pretty simple fixes, but added value for your users. As they get pre tournament data instantly as it is in the phone and the intelligent refresh only gets activated on the stages that are relevant at the time.
Next step is to store the live updated data in the phone, so it can be used post tournament, similar to the way it is in my Champions League Final app. But that will have to be an update.

Thanks for listening and see you next week!
Happy coding.

Advertisement

About markoo

I am a Dad of 4! Husband of 1! Ex-husband of 1! Developer of Windows Phone apps!

Discussion

3 thoughts on “Hey app, stop using my data plan!

  1. You ought to really control the commentary at this site

    Posted by source | June 7, 2012, 12:04 am
  2. Very interesting information!Perfect just what I was searching for! “If you could choose one characteristic that would get you through life, choose a sense of humor.” by Jennifer Jones.

    Posted by regim hotelier iasi | June 26, 2012, 6:11 pm

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

Apps47.com

Enter your email address to follow this blog and receive notifications of new posts by email.

%d bloggers like this: