1

I have an app uploaded on apple store, I need to check how many % of users using my app have ios5/6/6.1/7 installed. One can check the statistics for Android on Google store, how do we do it for Apple !

JgdGuy
  • 173
  • 11

2 Answers2

1

You would need to POST [UIDevice currentDevice].systemVersion to a REST api of some sort as Apple doesn't supply those statistics

Martin
  • 6,632
  • 4
  • 25
  • 28
  • Yeaah, that i need to incorporate in my code. But this app is currently live. Any tool to get the statistics ? – JgdGuy Sep 15 '13 at 05:37
  • 1
    Unfortunately not - you'd need your users to update. You can also incorporate something like BugSense which can track those statistics for you (and bugs!) – Martin Sep 15 '13 at 05:39
  • Whats BugSense, never heard of it ! Some sort of 3rd party API ? – JgdGuy Sep 15 '13 at 05:40
  • Correct-- you can find it at bugsense.com – Martin Sep 15 '13 at 05:43
  • No problem. If it answered your question, please feel free to accept at your leisure :) – Martin Sep 15 '13 at 06:02
  • There's quite a few tools out there now for this kind of data, I use Flurry, but there are other good tools out there too, I think another is called appcentric... or something... – Pork 'n' Bunny Sep 15 '13 at 06:12
0

Though there are tons of analytics libs like Flurry out there it sounds like you're looking for something that might help out with what you have live on the store. If your app has any web page viewing, like a "products" page. You can see the browser/os/device stats by instrumenting the site with google analytics.

troppoli
  • 558
  • 6
  • 13