markjnet

Tweeting from an Ad on the iPhone Using URL Schemes

Lately I’ve been experimenting with promoting out app ‘Friend Focus (for Facebook)‘ by ‘turning out the vote’ – ie getting our existing users to help us promote Focus. Once I’ve found a formula that works well we’ll implement the scheme in app and figure out a way to reward users for helping us, but for now I’ve been using house ads. House ads are our own ads placed in our app using the ad network we’re integrated with. Admob in this case. This is a great way to try out ad copy and experiment with different promotions because its all done with no code updates to our app, all I have to make is a simple HTML landing page for each ad.

A recent campaign we’ve been running is ‘Tweet your support for Focus’, which asks people to tweet saying that Focus is great:

Tweet support for Focus ad

Tweet support landing page

Naturally the tweet has to be pre-filled, which lets me use a bit.ly link so I can track the effectiveness of the campaign. A ‘tweet me’ link is pretty easy on the web, but this is on people’s iphone. Twitter users with lots of followers (ie the people we want to tweet) aren’t using the twitter website on their iPhone, they’re using a twitter app, of which there are many to choose from! So how do we turn a click on my ad into a pre-filled tweet right inside someone’s pre-logged in twitter app of choice? The solution is to use custom URL schemes. Several iPhone twitter apps have custom url schemes that allow you to launch them and pre-fill a tweet using their custom url. This works just as well from the landing page of an admob, in code in a native app, in a web page in mobile safari, or a link in an email.

Hmmm, but which twitter app to choose? Turns out you can choose them all! I wrote some simple javascript to just open all of them – one of them is bound to hit. The code is below. I picked 5 of the most popular twitter clients and included them. The script works great in the UIWebView that Admob opens to show the landing page for the ad, because the UIWebView isn’t throwing up a dialog saying “couldn’t open that URL” for urls where a scheme isn’t installed on the devide. Its imperfect as a web page because of these alerts, which you will see if you try it. I tried a bunch of things – using the tweet url for an image src, in an iframe, as a form submit. I also played with timers and onblur event to try to cancel out the urls tries upon returning to the page in Safari. If someone could figure out the perfect javascript for this that works in Safari and post here in the comments, that would be very awesome.

Go ahead and try it by clicking the ad above, and if you tweet your support for Focus, that would be splendid! As you can see to the left, it works… we’ve had 28 tweets so far, from a variety of twitter apps, which has generated 165 click throughs to the Focus website. Thanks to everyone who tweeted for us so far. Below is my hastily put together javascript.

 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Tweet Focus Support</title>
 <meta name="viewport" content="width=300; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0" />
 
<script type="text/javascript">
var msg = "Get%20the%20best%20Facebook%20on%20%23iphone%20with%20Focus%20for%20Facebook%20http%3A%2F%2Fbit.ly%2FFocus4Facebook%20%40focusedapps%0A";
var tweetTry=0;
var tweetTryCancel=false;
var tweetTrys = new Array();
tweetTrys[0]="tweetie:///post?message="+msg;
tweetTrys[1]="twitterrific:///post?message="+msg;
tweetTrys[2]="echofon:///message?"+msg;
tweetTrys[3]="twit:///post?message="+msg;   //twitelator
tweetTrys[4]="x-birdfeed://post?text="+msg;
 
function tweetPress() {
	tweetTryTime=0;
	tweetTry=0;
	tweetTryCancel=false;
	tweet();
}
 
function tweet() {
//alert("tweet");
	if (tweetTryCancel) {
		alert("cancel");
		return;
	}
	var currentTime = (new Date()).getTime();
	if (tweetTryTime!=0) {
		var elapsedSinceLastTry = currentTime-tweetTryTime;
		//alert(elapsedSinceLastTry);
		if (elapsedSinceLastTry>400) {
		alert(elapsedSinceLastTry);
			tweetTryTime=0;
			tweetTry=0;
			tweetTryCancel=false;
			//alert("reset");
			return;
		}
	}
 
	tweetTryTime = currentTime;
 
	var url = tweetTrys[tweetTry++];
	if (tweetTry>5 || url==null) return;
	if (tweetTryCancel) return;
	//alert(url);
	if ("http:"==url.substr(0,5)) {
		window.location=url;
		window.setTimeout("tweet()",10);
		return;
	} else {
		//window.location=url;
		var obj = document.getElementById("if1");
		obj.src = url;
		window.setTimeout("tweet()",10);
		return;
	}
}
 
function onBlur() {
	tweetTryCancel = true;
};
 
 
window.onblur = onBlur;
 
</script>
</head>
<body>
<div style="margin-right: auto;margin-left: auto;width: 280px;background-color: #DFEFF5;padding: 5px;border: 3px solid #6080C0;"><center>
  <div align="center" class="style1">Tweet Your Support  </div>
  <p align="left">We need your help to spread the word about Focus for Facebook. If you use Twitter, please take a moment to...</p>
 
  <p align="center"><a href="" onclick="tweetPress(); return false;" }><img src="tweetSupportApp.png" alt="tweet support" width="245" height="41" /></a></p>
 
  <p align="center"><a href="http://clicktotweet.com/ha89H"><img src="tweetSupportWeb.png" alt="tweet support" width="245" height="41" /></a></p>
 
  <table width="219" height="94" border="0" align="center" cellpadding="2">
    <tr>
      <td height="15" colspan="3">&nbsp;</td>
    </tr>
    <tr>
      <td rowspan="2" align="left" valign="top"><img src="logo62.png" width="62" height="62" /></td>
      <td rowspan="2" align="left" valign="top">&nbsp;</td>
      <td height="5" align="left" valign="bottom">Thanks,</td>
    </tr>
    <tr>
      <td height="5" align="left" valign="top"><p>Mark &amp; Rob, Focused Apps.</p>
      </td>
    </tr>
  </table>
  <img src="" width="1" height="1" id="img1" /><img src="" width="1" height="1" id="t2" />
  <form id="form1" name="form1" method="get" action=""></form>
  <iframe id=if1 src ="" width="1" height="1"></iframe>
 
  </div>
</body>

[Slashdot] [Digg] [del.icio.us] [StumbleUpon]

6 Months of iPhone App Sales Stats, Cause and Effect.

My iPhone game Hit Tennis is a simple iPhone tennis game, but with really fun engaging gameplay I designed specifically for playing tennis with the touch screen. You swing your finger across the screen to hit the ball, controlling strength and direction, so you get the feeling of real rallies as you play. The game has been out for 6 months, durring which I’ve been working on the consulting side of my business, but I’m planning Hit Tennis 2 (as an upgrade) with much deeper gameplay. I’m sharing six months of sales figures from this app in order to demonstrate effect on sales of various events, some under my control and some not. Here’s that 6 months of sales:

rev6m.psd

Launch

I launched in November 08 in a real hurry. Consequently I had a bunch of bugs which manifested as a lousy umpire who annoyed my players, so I had to do several quick updates. The reason for rushing was that I’d been developing Hit Tennis during a lull while Apple spent 101 days approving my app Smart Caller, which made me fearful of long waits for approval and I wanted Hit Tennis to be on sale in time for Christmas. My launch strategy was a simple online press campaign by emailing review sites with a YouTube demo vid, and starting off as a free app to ensure lots downloads. I quickly got small news stories and reviews on some good gaming and iPhone sites, and the first 2 days saw about 70,000 free downloads. On day 3 I switched to my planned price of $1.99. Why not 99c? I’d put a lot of effort into the basic gameplay, and I think I was too proud to price the same as all the 99c toy apps.

Christmas and TV Ad

Christmas saw a huge sales spike 4x over normal and welcome extra revenue, and then through January sales came back down to pre Christmas levels. January through April I worked on other projects and did no promotion of Hit Tennis, but I got a little lucky. A competing Tennis app Touchsports Tennis was shown for a few seconds in Apple’s TV ad for the iPod touch in February. It got people looking for Tennis in the App Store, and as my basic SEO was OK of course they found my app and I got increased sales. I was not tracking app store rankings at the time, but this sales spike probably lifted my rank in the sports games category, leading to ongoing sales in March.

March Sales Decline

March saw no promotion or updates from me, and no external events. I took the sales data for March and plotted it with a linear trend line to describe the decline in easy to understand terms:

marchUnits.png

The trend line has a gradient of -0.5, meaning that on average, every two days sales went down by 1 unit. Just using that trend line to ‘predict’ sales (by calculating the area under the line) we get 1021 units, which for a $1.99 app predicts $1,422 in revenue (after Apple’s 30%, and not accounting for currency differences). In fact my March financial report gave my earnings as $1,364. The point here though is that if sales keep declining by 1 unit every 2 days, then by now (May) Hit Tennis wouldn’t be selling much at all.

Tracking App Store Rank

I’d occasionally take a peak at Hit Tennis’ rank in the app store by using the Mobclix’s website, but in April I started using MajicRank to check my stats. (Check out my posting about these and other sales stats tools). To begin with I’d misunderstood what MajicRank does, and I wasn’t sure it was reporting my rankings correctly because the numbers didn’t match Mobclix’s. However I finally figured out that Mobclix and MajicRank report on different ranking lists, they are both right, but MajicRank’s number are more important than Mobclix’s now that the App Store ranks paid and free apps in separate lists. (All the different ranking lists are explained in my posting Understanding App Store Top 100s.) MajicRank showed that Hit Tennis was present in the sports games top 100 paid list in most countries, and in a few countries it was in the top 10. (I’m very happy to be ranked well in Croatia, but it only takes a couple of sales a week!) Finding out that Hit Tennis was not completely buried inspired me to see what I could do to increase sales, short of the big update I have planned for later.

Cut Price to 99c

On April 21st I cut the price from $1.99 to 99c. I did not publicize the price change as I wanted to see the elasticity of demand among app shoppers who happened across Hit Tennis by whatever means customers had been finding the app for the previous weeks. As you can see below in the graph of unit sales for March, sales climbed steadily for a few days. The increase in volume did offset the lower price, and as you can see in the revenue graph, revenue (at that time) held and then grew also. Due to the increase in volume my rankings went up somewhat. (I’m dumb for not recording them. MajicRank now records them for me :-)

unitsMarchWorld2.png

revMarchWorld2.png

Version Update and Release Date Trick

Mean time I’d been working on an update. Hit Tennis was my first time programming 3D graphics, so I did everything with simple billboarding 2D textures and alpha masks to create shapes. Pseudo 3D if you will. It worked for the simple game that Hit Tennis is, but several reviews in the app store had said ‘it should be more 3D’, and in fact due to the tennis racket’s 2D existence, it would disappear when you saw it side on. Saving gameplay enhancements for later, for this update I replaced the 2D tennis rackets with real 3D objects. A fun journey which had me learn to buy stock 3D models, edit them with Cheetah 3D (which I highly recommend), and load them into the game using Jeff LaMarche’s Obj File loader.

The update came out on the 28th. Apple had just stopped sending out ‘your app is approved’ emails, but I’d noticed that app approvals have been reliably taking 7-8 days so I knew when to expect it. On the 28th I changed the availability date in iTunes Connect to 28th April. This is the ‘release date trick’. It requires careful timing and a bit of luck to make it work, but when it works it gives a sales boost. As I explained in Understanding App Store Top 100s an app’s release date is important in one place: the default view of a category in iTunes on the desktop. With the release date trick I got Hit Tennis near the top of that page, and it stayed there for a several days. This update almost doubled sales. There were two other effects with the update that may have been factors in the increased sales. The new version triggered several thousand updates per day (see below), proving that I still have a lot of people that play the game. Maybe Apple uses updates in the ranking algorithm and it helped raise my ranking? Secondly, stars are now reported in the app store by version, so the new version gave me a chance to shake off my two and a half stars and start over (I’m now much happier with three stars :-).

upgMarchWorld.psd

Translating App Store Copy to French and Top 100 Paid Games

I’d not localized any of my apps, but Hit Tennis was relatively popular in France and I wanted to see the effect on sales of translating the app store description into French (and I knew a French person who would translate it for me). It could only increase sales right? Right. MajicRank reported the next day that sales had gone up enough to get Hit Tennis ranked not just in the top 100 sports games in France, but Hit Tennis was now placed in the top 100 paid games in France. Pretty lucky! You can see below that this brought a huge boost, and in fact for a couple of days I made more from sales in France than I did in the USA. Revenue in France for the period shown was 7x revenue in France for the previous month.

revMarchFrance.psd

Sales Back in Decline

It’s been a few weeks now since my Hit Tennis update, and sales are back down to ‘normal’. I hope sharing these 6 months of data along with looking at cause and effect on sales is helpful for other app sellers.

…and just in case you were wondering, here is the geographic breakdown for the 6 months of revenue:

200905190226.jpg

[Slashdot] [Digg] [del.icio.us] [StumbleUpon]

Understanding App Store Top 100s

Understanding the unique ways the app store works is critical in deciding app store marketing tactics and understanding the spikes and drops in app sales figures. This article explores how the top 100 lists in the app store work, and a future posting will look at how this applies to real sales data.

Top 100 lists.

Apple tracks the popularity of apps and ranks them in lists of top 100 apps. These are the ‘Top Paid’ and ‘Top Free’ lists you see when you browse the app store. The exact method is known only to Apple, but it seems that Apple measures app popularity by unit downloads over the last day, perhaps using a weighted method where downloads from previous days have a decaying influence on ranking. There are many ways that customers can find apps, eg searching iTunes, Google search, app review websites, word or mouth, ads in other apps, etc, but it’s clear that browsing the top 100 lists in the app store is very important app discovery method. Several developers have reported greatly increased sales when an app is in a top 100 list, and greatly reduced sales when their app slips off the bottom of a top 100 list. The two most important top 100 lists are top 100 paid apps and top 100 free apps, and then there are top 100 free and top 100 paid lists for each category and subcategory of games. In addition to the top 100 lists there are listings of apps by release date. Every one of these lists is maintained independently for every iTunes country, so an app that’s very popular in one country and in several top 100 lists for that country might be totally missing from the top 100 lists in other countries.

Browsing the App Store on the iPhone or iPod touch

The app store app on the iPhone or iPod touch opens to the last application tab that you were using: Featured, Categories, Top 25, Search, or Updates. On the top 25 tab you can see either the free or paid top 25 apps, selecting free or paid with the toolbar at the top. When if first opens it will default to whichever of free or paid you were looking at last. 5 apps fit on the screen at once, so in fact to begin with you see top 5. Scrolling down through 5 screens worth gets you the whole top 25. At the bottom of the table is a link to ‘Show top 50′, taping this gets 25 more apps added to the table, so you can scroll through the top 50 free or paid. At the end of 50 there’s no link to see more, so on the device you can’t see the entire top 100 overall apps, only the top 50.

Screenshot_a.png Screenshot_b.png

Via the Categories tab you can browse the top 100 paid and free lists for each category. Tapping on a particular category opens that categories top paid list as a table. The table has 25 apps listed, and at the bottom is a link ‘Twenty Five More…’. You can use that 3 times to get the table to show the full top 100 list. The toolbar at the top of the table switches between the top paid, top free, and listing apps by release date. Note that the table always opens showing the top paid list when you go into a category, it doesn’t remember if you were last viewing top paid, top free, or by release date. Note that this is different to iTunes on the desktop, which defaults its category view to release date. When viewing by release date, you can keep tapping the ‘Twenty Five More…’ link and get up to 350 apps listed.

Browsing in iTunes on the Desktop

In the App Store page in iTunes, the middle of the screen is full of special areas ‘New and Noteworthy’, ‘What’s Hot’ etc that the iTunes editorial team uses to promote apps it has hand picked. The overall top 10 paid apps is shown in the right column, and underneath that the overall top 10 free apps. (Note how paid gets billing over free, though headline billing is in the hand picked areas in the middle, which can include paid and free). Clicking on one of the top 100 links goes to a page that shows all top on screen.

On the left side of the main app store screen is the list of categories. Clicking on a category goes to thats categories app listing (screen shot below). When this page opens it lists the apps by release date. So here’s why the app release date is important – release date is the default view of an app store category in iTunes on the desktop. It’s possible to manipulate the release date during an app update to get an old app back onto this page. The first 20 apps are show, and you can page through all of them 20 at a time. The app listing can be changed to sort by most popular or by name. Sorting by most popular shows a popularity ranked list for free and paid apps combined. It’s interesting to see which paid apps show up in this list competing with the free apps in that category.

screen2.png

On the left and right side, the top 20 paid and top 20 free apps for this category are shown, and there are links to go to the full top 100 list for each. The top 100 lists show 100 apps, and there is no paging to get to apps 101-200.

screen3.png

Tools to examine Rankings

As a seller of apps, its important to keep an eye on the rankings of your app, your competitors apps, and different apps in order to understand your market. Using iTunes to find apps rankings is laborious, especially because the rankings are different for each country. There are a couple of wonderful tools I use to help. MajicRank will connect to the iTunes servers for you and find the current rankings of any apps you’ve configured in it, and it will do that for every country or just the ‘big 8′ countries. What it doesn’t do is remember your rankings and chart them over time, though the developer is working on this. MajicRank uses the individual category top 100 ranking lists for each country.

Mobclix tracks all apps rankings over time, and over on their website you can get ranking history charts for free. What Mobclix is charting is the free and paid combined popularity that you can see in a category in iTunes USA. So if you use Mobclix and MajicRank together, the rankings won’t match because they show ranking in different lists.

[Slashdot] [Digg] [del.icio.us] [StumbleUpon]

Sales Stats Tools for iPhone Apps

AppViz charts all your app store sales reports for you, and for a huge time saving it logs in to iTunes Connect for you and downloads them automatically. An added bonus (assuming you can stomach reading them) is that AppViz will download all your app reviews too! AppViz charts new downloads, upgrade downloads, all downloads, and sales revenue. Graphs can be plotted by different date ranges and for different countries, and it converts everything to your own currency. AppViz doesn’t currently support multiple iTunes Connect accounts, but there are work-arounds and the feature will be added soon. I’d like to see it handle the financial reports a bit differently to make it easier to reconcile with payments from Apple. Highly recommended.

appViz.png

AppSales Mobile is similar to AppViz, but its for your iPhone! AppSales source code is in Google Code right now, download with SVN and pop it on your phone with a debug build. Great distribution model for us developers! It’s a fantastically designed app, squeezing lots of charts onto the phone without anything ever look squeezed. Charts and reports show daily or weekly sales revenue with drill down by product or country. AppSales does have one big drawback, it is oriented around revenue from paid apps. It will show download number for free apps mixed in with the overall report data, but it doesn’t include downloads in the line graphs, they are revenue only. (Back in the day I used to use AppSales for the mac, but it’s no longer being distributed or updated.)

My App Sales is another sales stats checker for your iPhone, but unlike AppSales it reports and charts both free and paid apps. Reports are broken down by day and week, with your account totals and app by app too, showing new downloads, update downloads, refunds, and sales revenue for paid apps. From the reports screen you can drill down to see that data country by country. The app will chart your data by sales revenue or downloads by day or week. My App Sales is the work of Oliver Drobnik, and he’s still maintaining and actively marketing the app.

myAppSales2.png myAppSales1.png

MajicRank and AppRanking scan iTunes servers and figure out apps ranking in iTunes stores around the world. As well as top 100 free and top 100 paid, the app stores have top 100 free and paid for each app category and game sub category, all of which can be browsed on the app store available on the iPhone and Touch themselves. I was very surprised to learn that Hit Tennis is in the top 100 paid sports games even in many countries including the USA, and its even in the top 100 paid games in a few countries around the world. This is really encouraging, and moves up the next release of Hit Tennis in my priorities. MajicRank is the first of the sales stats tools to record ranking data over time and graph it. Graphing ranking data alongside sales data and your calendar of marketing actions is very powerful for understanding how to tune your marketing plans to make the most from your apps. If you’re not sure about what all the different ranking lists are, read: app store top 100 rankings explained.

MajicRank

Mobclix shows app rankings on their site, with graphs. They are charting top 100 popularity free and paid combined, for the USA app store (so their numbers won’t match MajicRank’s numbers). Go Imangi!

CM Capture 18.png

AppStore Clerk is a simple utility that parses daily and weekly download reports and shows you the data in an easy to read table, showing new downloads and updates.

screen 1.png

Heartbeat is a fully featured subscription website that features everything in all the tools above mixed with crash reporting, analytics, and a whole lot more. When I sell my millionth app I’ll try it :-).

AppStatz is another online solution to check out, though it’s still in private beta. (thanks @shanev). AppStatz – let me in your beta :-)

Drop me a line and tell me about the tools you use.

[Slashdot] [Digg] [del.icio.us] [StumbleUpon]

Screen Capture Tools for iPhone Apps

finger.png

SimFinger & PhoneFinger help you make video demos of an app using the simulator with screen capture software such as Snapz Pro X or iShowU. Filming a real iPhone takes a lot more work to get a decent quality video, so screen capture can be the way to go if you don’t use the accelerometer or need to show integration with the phones native apps (which are missing from the simulator). PhoneFinger turns your mouse pointer into a customizable finger that taps the screen when you click, so the screen cap can feature a finger instead of a mouse pointer. I used it with iShowU to make the Duck You Undo video. SimFinger takes a different approach, the app is a window you position over the top of the simulator, and it does three things for your screen cap:

  • Adds a white circle that follows the mouse pointer, which is great for directing the viewers attention in the vid.
  • When you click the white circle ‘taps’ the screen.
  • Shows a classy 3G style iphone with better gloss.

SimFinger has another handy trick, it can install fake versions of the native iPhone apps onto the simulator, so that in your video you get to launch your app from a normal looking iPhone, rather than the four apps the simulator has. See SimFinger in action with Snapz Pro in the Tweety demo. If you want a 3G looking phone and a finger, you can use SimFinger and PhoneFinger at the same time.

[Slashdot] [Digg] [del.icio.us] [StumbleUpon]

Apple’s TV Ad Causes Hit Tennis Sales Spike?

On Feb 17th I had a 5x sales spike in my iPhone game Hit Tennis. Cool – a little extra income, but what caused the spike? I looked at Google Analytics and over the next couple of days I Googled and Yahooed looking for a new review or something, but nothing. The only clue I had was from my daily download stats that I check using AppViz from IdeaSwarm. By filtering by country I could see that the spike was in the USA only, maybe meaning that my mystery promoter might not be a website, but some US only media. (People all over the world read web sites in English – and even in the UK, Australia and Canada sales are the same.) Here’s that graph of Hit Tennis sales in the US:

hit-tennis-spike-2

Then my girlfriend noticed Apple’s new iPod Touch TV ad, which I think started airing on the 16th. Towards the end it shows about 1 second of TouchSports Tennis – the tennis game with the awesome 3D graphics. No word on about sales on Handheld Games blog, but Mobclix publishes app store ranking histories, and TouchSports Tennis jumped from #197 to #69 between the 16th and 20th. (Hit Tennis’ ranking didn’t change.) So our guess is that  iPhone and iPod owners were driven crazy excited by the TV spot and rushed to the app store looking for Tennis games, and they came across Hit Tennis with it’s fun and engaging  game play of swiping of your finger across the touch screen to swing the raquet and hit the ball. So if this is the reason for my sales spike, then Thanks Apple, thanks Handheld Games, and thanks all my customers out there!

hittennis21

[Slashdot] [Digg] [del.icio.us] [StumbleUpon]

Christmas Day 4x sales boost for iPhone Games – Hit Tennis numbers

iTunes Connect just opened its doors after the Christmas break, allowing iPhone developers (me!) to log in and check our sales stats for Christmas. I’m very pleased to discover that Apple managed to get some extra pressies under the tree for me this year in the form of 4x sales increase for Christmas! Check out the graph below of sales figures for my iPhone game Hit Tennis (the tennis game where YOU hit the ball with swipe of your finger).

Hit Tennis for iPhone sales over Christmas

Hit Tennis for iPhone sales over Christmas

Over the past few weeks I’ve been working hard on my other iPhone app, Smart Caller, I’ve launched an unique pricing wizzard that finds the best deal for customers in the USA, and I’m about to release an international version for customers worldwide that includes the effortless ‘we set it up for you’ feature too, so check it out for real savings on internatinal calls on your iPhone. Hit Tennis fans hang tight, I’m planning Hit Tennis 2 which will include full match play and challenging new computer opponents.

Cheers, Mark

Hit Tennis: The adictive tennis game on iPhone where YOU hit the ball with a swipe of your finger.

Smart Caller: Great rates on iPhone international calls with effortless iPhone calling cards

[Slashdot] [Digg] [del.icio.us] [StumbleUpon]

First 24 hrs Going Well for Hit Tennis

In the first 24hrs, Hit Tennis has over 20,000 free downloads. I think its in the top 50 for free games, and I got some good press at Pocket Gamer in the UK. Today bugfixes.

[Slashdot] [Digg] [del.icio.us] [StumbleUpon]

Hit Tennis game for iPhone iPod touch

Get from App Store

Get from App Store

I just released Hit Tennis for the iPhone and iPod touch, its available now on the app store!

[Slashdot] [Digg] [del.icio.us] [StumbleUpon]

iPhone App Store Price and Category Analysis

The iPhone app store is bursting with apps and I wanted to put some numbers to it. (I should have just looked here: http://projectx.mobclix.com/appstore/ :-). A little copy, paste, and Excel later I have a spread sheet with 5,293 apps from Oct 16th 2008 in the US app store.

  • 99c is the most popular price point with nearly 1800 apps, followed by free with just over 1200.
  • Games is the biggest category with over 1,400 apps, followed closely by Entertainment and Utilities (but its only close because so many apps use Entertainment or Utilities as their secondary category).
  • Hotspots are 99c in Entertainment, Game, and Utility, and there are lots of $1.99 and $2.99 games too.
  • 23% of apps are free.
  • Note that the majority of games are not free, and of course many of the free games are lite editions of non-free games.
  • Travel, Reference, and Education are where you will find most of the apps at $10 and over.

Note: I first publish inaccurate numbers because I made the mistake of not counting apps that didn’t use a secondary category, which is 1557 apps – mostly games.



[Slashdot] [Digg] [del.icio.us] [StumbleUpon]

  • Categories

  • markjnet