I am trying to decide if I should keep support for iOS 4.x in the next build of my app or drop it an only support iOS 5 & 6 going forward. Does Apple report back to the developer the iOS version for each app sold so I can get an idea of the demand for my app from older devices? I have scoured iTunesConnect but I do not see it there.
I would rather not maintain the support going back that far, but if the user community and demand it there, it may make financial sense to do so.
Thanks!
Apple doesn’t report this back to you via iTunes connect. You need to integrate this into your app via third parties like google analytics, flurry, or any other platform.
It’s also very easy to report the version with
[[UIDevice currentDevice] systemVersion]if you can roll your own analytics system.